ジャクソンプロバイダーでRestEasyクライアントを使用していますが、上記のエラーが発生します
クライアント側のコードは次のとおりです。
ClientRequest request = new ClientRequest(url);
request.accept(MediaType.APPLICATION_JSON);
ClientResponse<String> response = request.get(String.class);
if (response.getStatus() != 200) {
throw new RuntimeException("Failed : HTTP error code : " + response.getStatus());
}
BufferedReader br =
new BufferedReader(new InputStreamReader(new ByteArrayInputStream(response.getEntity().getBytes())));
response.getEntity()
ClientResponseFailure
エラーで例外をスローしています
Unable to find a MessageBodyReader of content-type application/json and type class java.lang.String
私のサーバー側のコードは次のとおりです。
@GET
@Path("/{itemId}")
@Produces(MediaType.APPLICATION_JSON)
public String item(@PathParam("itemId") String itemId) {
//custom code
return gson.toJSON(object);
}