如何为字段的模型创建特定的验证器
How to create a specific validator for a field's model
我想对 class 中的字段使用特定验证。它应该确保用户名字段遵循一些特定规则。
谁能给我一些文档,告诉我如何专门为 class 中的字段创建验证器?
我正在使用 Spring 框架。
spring 文档有什么问题。
该页面通常是 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
我想对 class 中的字段使用特定验证。它应该确保用户名字段遵循一些特定规则。
谁能给我一些文档,告诉我如何专门为 class 中的字段创建验证器?
我正在使用 Spring 框架。
spring 文档有什么问题。
该页面通常是 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