Jersey + Json media type application/json was not found

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

    I too have same issue with 1.19.4 jersey. It got fixed by adding

    compile group: 'com.fasterxml.jackson.jaxrs', name: 'jackson-jaxrs-json-provider', version: '2.10.0.pr1'
    

    to gradle dependency.

    Thanks, Praveen R.

提交回复
热议问题