JSR303(java specification requests)
JSR303又叫Bean Validation,是对java bean的参数校验
java元注解:@Documented @Target @Inherited @Retention
JSR注解:@Constraint
自定义JSR303注解:使用@Constraint注解标注注解,注解中validatedBy定义自定义验证规则类;自定义验证规则类需要实现ConstraintValidator接口
JSR303又叫Bean Validation,是对java bean的参数校验
java元注解:@Documented @Target @Inherited @Retention
JSR注解:@Constraint
自定义JSR303注解:使用@Constraint注解标注注解,注解中validatedBy定义自定义验证规则类;自定义验证规则类需要实现ConstraintValidator接口