微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

多个Regex @ Pattern的1个字段?

我试图将多个@Pattern注释应用于单个字段:
@Pattern(regexp = "(?=.*[0-9])",message = "Password must contain one digit.")
@Pattern(regexp = "(?=.*[a-z])",message = "Password must contain one lowercase letter.")
@Pattern(regexp = "(?=.*[A-Z])",message = "Password must contain one uppercase letter.")
@Pattern(regexp = "(?=\S+$)",message = "Password must contain no whitespace.")
private String password;

但是,我不能这样做.我想要在密码字段上违反正则表达式约束的个别消息.这可能吗?

我的替代方法是使用JSF 2.0 f:validatorRegex标签.

解决方法

您可以使用@Pattern的内部@List注释:
@Pattern.List({
    @Pattern(regexp = "(?=.*[0-9])",message = "Password must contain one digit."),@Pattern(regexp = "(?=.*[a-z])",message = "Password must contain one lowercase letter."),@Pattern(regexp = "(?=.*[A-Z])",message = "Password must contain one uppercase letter."),@Pattern(regexp = "(?=\\S+$)",message = "Password must contain no whitespace.")
})
private String password;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐