1. 问题:

在微服务项目时,通过LoadBlance + restTemplate 完成 Consumer 与 Provider 交互时,发生 415 数据格式错误。但是,归根结底,其实就是MVC部分的问题。可能在Cloud使用时暴露出来了。
Controller 发送 POST 数据时,虽然已经配置了 @RestController注解以及,在返回方法的注解内部设置了返回数据接收类型@PostMapping(value = "xxx", produces = {"application/json;charset=UTF-8"}),页面依旧出现415错误。

2. 解决

目前,本人没有找到什么太好的解决办法。但是,引入下方依赖,可以解决。
<dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> <version>2.10.1</version> </dependency>

原文链接:https://blog.csdn.net/weixin_44311939/article/details/105498355

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐