Jersey + Json media type application/json was not found

前端 未结 15 1037
轻奢々
轻奢々 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:44

    When using jersey-bundle-1.19.1.jar (non-maven) I had to remove this:

    
      com.sun.jersey.api.json.POJOMappingFeature
      true
    
    

    from web.xml file.

    I know that documentation suggests this section is necessary but surprisingly it was a reason of the problem.

提交回复
热议问题