11:15:31.454 logback [XNIO-1 task-23] DEBUG o.s.s.w.h.writers.HstsHeaderWriter - Not injecting HSTS header since it did not match the requestMatcher org.springframework.security.web.header.writers.HstsHeaderWriter$SecureRequestMatcher@2f0a533c 11:15:31.454 logback [XNIO-1 task-23] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public com.tofly.common.core.entity.ResultRespone com.tofly.fees.userprofilemgt.controller.DaCustomerController.saveYhda(com.tofly.fees.userprofilemgt.entity.DaCustomer,com.tofly.fees.meterprofilemgt.entity.DaMeter)] 11:15:31.454 logback [XNIO-1 task-23] DEBUG o.s.web.servlet.DispatcherServlet - Completed 500 INTERNAL_SERVER_ERROR
时间: 2023-10-09 17:08:18 浏览: 92
SpringBoot之logback-spring.xml不生效的解决方法
这段日志信息显示了一个Web应用程序的错误,具体来说是一个HTTP 500(Internal Server Error)错误。错误消息中提到了一个`HttpMessageNotReadableException`,这通常是由于请求体缺失或格式错误导致的。根据日志信息,请求中缺少了一个必需的请求体,这个请求体是需要在`DaCustomerController`的`saveYhda`方法中传递的。如果你是在调试Web应用程序,可能需要检查请求是否正确发送,并且检查请求格式是否正确。
阅读全文