SpringMVC异常信息,不知道是哪里抛出来的

知道是转换的问题,但是不知道是什么地方,没有错误提示
}org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "null"
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:965)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:844)
[10:33:10.646] {http-app-8080-88$475633111} at javax.servlet.http.HttpServlet.service(HttpServlet.java:114)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:829)
[10:33:10.646] {http-app-8080-88$475633111} at javax.servlet.http.HttpServlet.service(HttpServlet.java:91)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.dispatch.ServletFilterChain.doFilter(ServletFilterChain.java:103)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.dispatch.FilterFilterChain.doFilter(FilterFilterChain.java:87)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.java:187)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.java:265)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:273)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.server.port.TcpConnection.run(TcpConnection.java:682)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.util.ThreadPool$Item.runTasks(ThreadPool.java:743)
[10:33:10.646] {http-app-8080-88$475633111} at com.caucho.util.ThreadPool$Item.run(ThreadPool.java:662)
[10:33:10.646] {http-app-8080-88$475633111} at java.lang.Thread.run(Thread.java:744)
[10:33:10.646] {http-app-8080-88$475633111}Caused by: org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input string: "null"
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterSupport.doConvert(TypeConverterSupport.java:74)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterSupport.convertIfNecessary(TypeConverterSupport.java:45)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.validation.DataBinder.convertIfNecessary(DataBinder.java:595)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveRequestParam(HandlerMethodInvoker.java:515)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:348)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:171)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:440)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:428)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:925)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:856)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:953)
[10:33:10.646] {http-app-8080-88$475633111} ... 15 more
[10:33:10.646] {http-app-8080-88$475633111}Caused by: java.lang.NumberFormatException: For input string: "null"
[10:33:10.646] {http-app-8080-88$475633111} at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
[10:33:10.646] {http-app-8080-88$475633111} at java.lang.Long.parseLong(Long.java:441)
[10:33:10.646] {http-app-8080-88$475633111} at java.lang.Long.valueOf(Long.java:540)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.util.NumberUtils.parseNumber(NumberUtils.java:158)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.propertyeditors.CustomNumberEditor.setAsText(CustomNumberEditor.java:115)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterDelegate.doConvertTextValue(TypeConverterDelegate.java:455)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterDelegate.doConvertValue(TypeConverterDelegate.java:427)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:181)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:93)
[10:33:10.646] {http-app-8080-88$475633111} at org.springframework.beans.TypeConverterSupport.doConvert(TypeConverterSupport.java:61)
[10:33:10.646] {http-app-8080-88$475633111} ... 25 more
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值