MessageBodyWriter not found for media type=application/json

The Solution to MessageBodyWriter not found for media type=application/json is


I was able to fix it by install jersey-media-json-jackson

Add the dependency to pom.xml

<dependency>
  <groupId>org.glassfish.jersey.media</groupId>
  <artifactId>jersey-media-json-jackson</artifactId>
  <scope>runtime</scope>
</dependency>

~ Answered on 2015-03-19 05:17:20


Most Viewed Questions: