0
点赞
收藏
分享

微信扫一扫

Could not find MessageBodyWriter for response object of type: XXX of media type: application/json

芭芭蘑菇 2022-04-30 阅读 79
java

问题描述

在使用Quarkus远程Rest调用时,报错Could not find MessageBodyWriter for response object of type: XXX of media type: application/json

解决办法

导入以下依赖即可

<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-resteasy-jackson</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-rest-client-jackson</artifactId>
</dependency>
举报

相关推荐

0 条评论