关于@Valid 不生效的问题
Posted yunian139
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于@Valid 不生效的问题相关的知识,希望对你有一定的参考价值。
当在controller 中使用@Valid+ BindResult 和在参数实体中使用@NotNull,@NotEmpty等注解进行参数验证,
最后通过接口调用却正常进入方法体内没有进行参数验证的情况,
原因在于
1:BindResult封装了参数验证抛出的异常,也就是说异常被抛出但异常被捕获到了,并被封装到BindResult中,因此方法会继续执行;
2:我们另外写了统一异常处理类处理了异常
解决方法:
1:统一处理BindResult,打印出BindResult的信息;我的处理如下
注意切面的位置和BindResult的位置
package com.crm.admin.interceptor; import java.util.List; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; import org.springframework.validation.BindingResult; import org.springframework.validation.ObjectError; import com.crm.admin.exception.ParameterIllegalException; /** * 检查入参合法性 */ @Aspect @Component @Order(1) public class ValidParamAspect { // Controller层切点 @Pointcut("execution (* com.crm.admin.controller..*.*(..))") public void aspect() { } @Before("aspect()") public void doBefore(JoinPoint jp) throws Throwable { Object[] args = jp.getArgs(); if(args != null && args.length > 1 ) { //取出第2个参数 Object obj = jp.getArgs()[1]; if(obj instanceof BindingResult) { BindingResult bindingResult = (BindingResult)obj; // 校验返回错误集合中的第一个错误信息 if (bindingResult.hasErrors()) { List<ObjectError> errors = bindingResult.getAllErrors(); throw new ParameterIllegalException(errors.get(0).getDefaultMessage()); } } } } }
2:自行检查全局异常处理类的处理逻辑
以上是关于关于@Valid 不生效的问题的主要内容,如果未能解决你的问题,请参考以下文章
kafkaThe group member needs to have a valid member id before actually entering a consumer group(代码片段
@NotBlank @NotNull @@NotEmpty注解配置未生效