使用 REST 访问 JPA 数据失败 未找到合适的 HttpMessageConverter
2022-09-04 06:53:03
我已经为此斗争了一段时间,找不到解决方案。我正在运行SpringBoot指南,并且使用REST访问JPA数据(http://spring.io/guides/gs/accessing-data-rest/)不起作用。
只需下载并运行它就可以运行,允许GET调用
http://localhost:8080/people
使用邮差。但是,每当我尝试PUT或POST时,我都会收到以下错误
{
"cause": null,
"message": "No suitable HttpMessageConverter found to read request body into object of type class hello.Person from request with content type of text/plain;charset=UTF-8!"
}
我通过PUT传递的json是
{
"firstName": "Dave",
"lastName": "Something"
}
这只是运行没有更改的vanilla项目。许多其他指南项目工作正常,所以我知道MVN,Spring Boot等工作正常。
尝试了很多论坛,但没有任何建议的作品。
任何帮助将不胜感激。
谢谢戴夫