举个例子:
@RequestMapping("/getStatus")
public returnType method(int status)
若请求url为/getStatus?status=a,用spring源码调试发现有异常,因为日志级别为info,所有异常没有打印出来。
报错地方
org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(NativeWebRequest, ModelAndViewContainer, Object...)的162行catch块
异常栈:
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'merchantAppInfo' on field 'status': rejected value [a]; codes [typeMismatch.merchantAppInfo.status,typeMismatch.status,typeMismatch.java.lang.Integer,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [merchantAppInfo.status,status]; arguments []; default message [status]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.lang.Integer' for property 'status'; nested exception is java.lang.NumberFormatException: For input string: "a"]
问题原因是转换为int时出错了。
感觉这里spring处理有点不合适,没讲错误信息提示出来。