...
|
...
|
@@ -57,7 +57,7 @@ public class GlobalDefaultExceptionHandler { |
|
|
if (e instanceof UnsatisfiedServletRequestParameterException
|
|
|
|| e instanceof MissingServletRequestParameterException
|
|
|
|| e instanceof MethodArgumentTypeMismatchException) {
|
|
|
log.warn("can not find validate request mapping at {}", request.getRequestURI());
|
|
|
log.warn("can not find validate request mapping at {}, params is {}", request.getRequestURI(), params);
|
|
|
response.setStatus(HttpStatus.SC_BAD_REQUEST);
|
|
|
return new ModelAndView();
|
|
|
}
|
...
|
...
|
|