Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public com.chengqq.common.R<com.baomidou.mybatisplus.extension.plugins.pagination.Page> com.chengqq.controller.EmployeeController.page(int,int,java.lang.String,com.chengqq.entity.Employee)]
时间: 2024-05-02 09:21:26 浏览: 240
解决The type org.springframework.dao.support.DaoSupport cannot be resolved.bao报错
根据你提供的错误信息,看起来是请求的HTTP消息体缺失导致的异常。在你的EmployeeController类中有一个名为page的方法,它接收四个参数,其中一个是一个名为Employee的对象。但是,请求中没有提供这个对象,因此Spring无法将请求转换为你的Employee对象。为了解决这个问题,你需要确保请求中提供了正确的消息体,以便Spring可以将其转换为你的对象。你也可以更改你的控制器方法,使其可以接受没有Employee对象的请求。
阅读全文