Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=ISO-8859-1' not supported
时间: 2023-12-10 14:26:27 浏览: 803
解决The type org.springframework.dao.support.DaoSupport cannot be resolved.bao报错
根据提供的引用内容,SpringWeb包里面的MediaType类不提供"text/plain;charset=ISO-8859-1"类型的内容。可以使用Spring提供的MediaType类型中的"text/plain"来替代。在你的SpringBoot项目中,使用@RestController注解来标识该类为控制器,并使用@PostMapping注解来标记postContent方法为处理POST请求的方法。在postContent方法中,使用@RequestBody注解来接收请求体的内容,并将其打印出来。
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=ISO-8859-1' not supported]意味着请求中的Content-Type为'text/plain;charset=ISO-8859-1'不受支持。这可能是因为你的应用程序没有处理这个特定的Content-Type。你可以检查你的应用程序代码,确保它能够处理该Content-Type或者根据实际情况重写Content-Type。
阅读全文