Springboot集成BeanValidation扩展⼀:错误提⽰信息加公共模
Bean Validator扩展
1、需求
在使⽤validator时,有个需求就是公⽤错误提⽰信息,什么意思?
举个例⼦:
@NotEmpty⾮空判断,在资源⽂件中我不想每个⾮空判断都写”不能为空“,只需要写”###“,然后提⽰信息⾃动会变成”###不能为空“
代码:
public class User{
//资源⽂件中pty=⽤户名
@NotEmpty(key={pty})
private String name;
'''
}
//加⼊name为空,则最终的错误提⽰为“⽤户名不能为空”(会⾃动加上“不能为空”信息)
2、实现⽅式
有两种实现⽅式
⽅式⼀:⼿动调⽤验证⽅法
注解
@Target({FIELD, ANNOTATION_TYPE})
@Retention(RUNTIME)
@ReportAsSingleViolation
@Constraint(validatedBy = {})
@NotNull
@Size(min = 1)
public @interface NotEmpty {
String message() default "{key}{com.chyjr.ssage}";
Class<?>[] groups() default { };
Class<? extends Payload>[] payload() default { };
String key() default "";
}
验证器
//验证器
public class MyValidator {
private static final Logger log = Logger(HybValidator.class);
private static Validator validator = null;
private static MessageInterpolator msgInterpolator = null;
static {
if (validator == null) {
LocalValidatorFactoryBean factory =
(LocalValidatorFactoryBean) Bean("validator");
validator = Validator();
msgInterpolator = MessageInterpolator();
}
}
public static HybValidatorResult validate(Object object, Class<?>... groups) {
HybValidatorResult result = new HybValidatorResult();
Set<ConstraintViolation<Object>> violations = validator.validate(object, groups);
Map<String, String> map = new HashMap<>();
if (CollectionUtils.isEmpty(violations)) {
result.setErrors(false);
} else {
result.setErrors(true);
for (ConstraintViolation<Object> violation : violations) {
String path = PropertyPath().toString();
String message = Message();
if (StringUtils.isBlank(path) || StringUtils.isBlank(message) || ainsKey(path))
continue;
message = resolveMessage(message);
map.put(path, message);
}
result.setItems(map);
}
return result;
}
private static final Pattern elpattern = Patternpile("\\{[^{}]+\\}");
private static String resolveMessage(String message) {
Matcher matcher = elpattern.matcher(message);
try {
while (matcher.find()) {
String el = up();
//⽤资源⽂件信息替换message = {key}{ssage}
//注解这⾥的key会替换成注解NotEmpty定义的key,即
//message = {pty}{ssage}
String val = msgInterpolator.interpolate(el, null);
if (StringUtils.isBlank(val))
continue;
message = place(el, val);
}
} catch (Exception e) {
<("验证引擎进⾏数据校验时出现异常, message:{}", message, e);
}
return message;
}
}
使⽤
//调⽤验证⽅法获得验证结果
HybValidatorResult bvr = HybValidator.validate(emp, CreateValidator.class);
/
spring boot原理和设计模式/表⽰有错误
if (bvr.isErrors()) {
}
//资源⽂件内容
//ssage=不能为空
//pty=⽤户名
⽅式⼆:⽤spring⾃带的@Validated,⽆需调⽤验证⽅法
这⾥有个问题:@Validated注解不认注解@NotEmpty中的key,如何解决呢?最终的实现⽅案:⾃定义验证器
代码:
注解
@Documented
@Target({FIELD, ANNOTATION_TYPE})
@Retention(RUNTIME)
@ReportAsSingleViolation
//指定验证器
@Constraint(validatedBy = NotEmptyValidator.class)
public @interface NotEmpty {
String message() default "{ssage}";
Class<?>[] groups() default { };
Class<? extends Payload>[] payload() default { };
String key() default "";
}
验证器:⾃定义
public class NotEmptyValidator extends AbstractValidator<NotEmpty,Object>{
@Override
public void initialize(NotEmpty notEmpty) {
}
@Override
public boolean doIsValid(Object value, ConstraintValidatorContext cc) {
return value != null;
}
}
/**
* 这⾥采⽤模板的设计模式
* @param constraintAnnotation
*/
public abstract class AbstractValidator<A extends Annotation,T> implements ConstraintValidator<A,T>{
/**
* 初始化由具体类实现
* @param constraintAnnotation
*/
@Override
public abstract void initialize(A constraintAnnotation);
/**
* 初始化具体由实现类实现
* @param value
* @param context
* @return
*/
@Override
public boolean isValid(T value, ConstraintValidatorContext context){
//获取验证结果,采⽤模板⽅法
boolean result = doIsValid(value,context);
//当验证错误时修改默认信息
if(!result){
/
/改变默认提⽰信息
if(ConstraintValidatorContextImpl.class.Class())){
ConstraintValidatorContextImpl constraintValidatorContext =
(ConstraintValidatorContextImpl)context;
//获取默认提⽰信息
String defaultConstraintMessageTemplate =
Object key =
//禁⽤默认提⽰信息
context.disableDefaultConstraintViolation();
/
/设置提⽰语(在message前⾯加上key)
context.buildConstraintViolationWithTemplate(key +                                          defaultConstraintMessageTemplate).addConstraintViolation();            }
}
return result;
}
/**
* 真正验证⽅法
* @param value
* @param context
* @return
*/
public abstract boolean doIsValid(T value, ConstraintValidatorContext context);
}
使⽤:
调⽤的时候只要在JavaBean前加上@Validated注解即可
总结:上述就是在⼯作中遇到的问题,并扩展了Validator

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。