java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse.setContentLengthLong(J)V

出现的问题

content-181

content-182

原因分析

  • 在给SpringMVC控制器类中的方法添加响应体(@ResponseBody)注解后,发生错误:java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse.setContentLengthLong(J)V

content-183

解决方案

  • 依赖版本问题,将spring-webmvc的版本降低到5.3以下即可,如图所示:

content-184

content-185