The error message is as follows
"MessageBodyWriter not found for media type=application/json ........ "
For a Maven project, please add following line in pom.xml file to solve the issue.
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
<version>2.11</version>
</dependency>
"MessageBodyWriter not found for media type=application/json ........ "
For a Maven project, please add following line in pom.xml file to solve the issue.
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
<version>2.11</version>
</dependency>
Comments
Post a Comment