Jersey + Json media type application/json was not found

前端 未结 15 1053
轻奢々
轻奢々 2020-12-06 01:03

I am trying with simple Jersey + JSON example but I get following error message body writer for Java class com.test.jsonexample and MIME media type application/json w

15条回答
  •  我在风中等你
    2020-12-06 01:40

    First of all if your @POST web-service returns a response you must add @Produces annotation.

    Ensure that jersey-json lib is in your classpath. Try removing the toString() method because it may broke the beans structure format.

提交回复
热议问题