我想对我班上的某个字段使用特定的验证。它应该确保用户名字段遵循一些特定的规则。
有人能指出一些文档,告诉我如何专门为类中的字段创建验证器吗?
我使用的是Spring框架。
答案 0 :(得分:1)
弹簧文档有什么问题。
该页面通常为http://docs.spring.io/spring/docs/current/spring-framework-reference/html/validation.html
有不同的方法可以做到这一点。我个人更喜欢javax.validation spring集成而不是spring直接使用系统。可以在hibernate-validator(javax.validation的实现)https://docs.jboss.org/hibernate/validator/4.0.1/reference/en/html/validator-customconstraints.html
中看到为对象创建自定义验证器。