Fetch the repository succeeded.
版本:jeesite 4.1.7
controller方法的参数加了@Validated,然后我写了ExceptionHandler拦截器,没拦住. 我在其他项目里面这个ExceptionHandler是可以拦得到的,请问如何处理??
@ExceptionHandler(value = {BindException.class, MethodArgumentNotValidException.class,Exception.class,RuntimeException.class})
public @ResponseBody
Exception handleException(Exception e) {
....
}