A message body writer for Java class not found

JavaRestJax Rs

Java Problem Overview


I am new to using JAX-RS and wrote a sample application that outputs a json object. but I am getting an exception. Here is my code:

@Path("/hello")
public class HelloWorldService {
 
	@GET
	@Path("/query/{artist_id}")
	@Produces("application/json")
	public Data getMsg(@PathParam("artist_id") int artist_id,
							@QueryParam("from") int from,
							@QueryParam("to") int to) {
		Data d=new Data();
		d.setName("Mateen");
		d.setRoll(77);
		return d;

	}

}

My data is simply a POJO class:

@XmlRootElement
public class Data {
	private int roll;
	private String name;
	public int getRoll() {
		return roll;
	}
	public void setRoll(int roll) {
		this.roll = roll;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
}

I get an exception:

javax.ws.rs.WebApplicationException: 
    com.sun.jersey.api.MessageException: 
    A message body writer for Java class com.abc.data.Data, 
    and Java type class com.abc.data.Data, 
    and MIME media type application/json was not found

What am i doing wrong ?

Java Solutions


Solution 1 - Java

I finally found my answer. I added

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-json</artifactId>
    <version>1.8</version>
</dependency>

to my pom.xml file. Then I added

<init-param>
	<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
	<param-value>true</param-value>
</init-param>

to my web.xml file, and everything works fine. No change was required to my code above.

Solution 2 - Java

I added following jars and it worked for me

  • jackson-core-asl-1.9.2.jar
  • jackson-mapper-asl-1.9.2.jar
  • jackson-xc-1.9.2.jar
  • jackson-jaxrs-1.9.2.jar

Solution 3 - Java

Just a small addition. In case if you do not use the web.xml descriptor file, you may enable the POJOMappingFeatire programatically as shown below

...
final ResourceConfig rc = new PackagesResourceConfig("com.test.resources");
	final Map<String, Object> config = new HashMap<String, Object>();
	config.put("com.sun.jersey.api.json.POJOMappingFeature", true);
	rc.setPropertiesAndFeatures(config);
...

Solution 4 - Java

Maven User: You just need the following 2 dependencies.

<!-- For Jersey --> 
<dependency>
        <groupId>org.glassfish.jersey.containers</groupId>
        <artifactId>jersey-container-servlet-core</artifactId>
        <version>2.15</version>
</dependency>

<!-- For JSON --> 
<dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>2.15</version>    
</dependency>

XML output is supported by default. So no dependency needed for it.

Solution 5 - Java

Working with Jersey 1.8, I was getting the same error while creating a JSON object and hitting a REST API from client side.

If you are facing issue at server side then, make sure that you have correctly included jersey-json.jar in classpath and mapped correct init-param in web.xml as mentioned in other answers.

For Client Side

As per Jersey 1.8 documentation, the following snippet shows how to use the POJO JSON mapping feature on the client side:

 ClientConfig clientConfig = new DefaultClientConfig();
 clientConfig.getFeatures().put(JSONConfiguration.FEATURE_POJO_MAPPING,Boolean.TRUE);
 Client client = Client.create(clientConfig);

Solution 6 - Java

I had the same issue: A message body writer for Java type, class java.lang.String, and MIME media type, application/json, was not found

The problem was that the class javax.ws.rs.ext.MessageBodyWriter was taken from

<dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>2.22.2</version>
    </dependency>

Was colliding with the same class from:

    <dependency>
        <groupId>com.sun.jersey</groupId>
        <artifactId>jersey-client</artifactId>
        <version>1.19.1</version>
    </dependency>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser1730789View Question on Stackoverflow
Solution 1 - Javauser1730789View Answer on Stackoverflow
Solution 2 - JavaSer YogaView Answer on Stackoverflow
Solution 3 - JavaCyril DebaView Answer on Stackoverflow
Solution 4 - JavaSorterView Answer on Stackoverflow
Solution 5 - JavaakmView Answer on Stackoverflow
Solution 6 - JavaNir SivanView Answer on Stackoverflow