Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

The ResourceConfig instance does not contain any root resource classes.

dhaval soni
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 23, 2013

I've added below dependency in POM.xml for resolving rest service error "

A message body writer for Java class … and MIME media type text/html was not found "

and facing an error as below:

Dependency:

<dependency>

<groupId>com.sun.jersey</groupId>

<artifactId>jersey-json</artifactId>

<version>1.14</version>

</dependency>

Error while access REST service:

The ResourceConfig instance does not contain any root resource classes.

can any one share me solution to resolve this issue.

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 23, 2013

are you developing your won REST Plugin?

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 23, 2013

following dependencies are using for REST

&lt;dependency&gt;
			&lt;groupId&gt;com.sun.jersey&lt;/groupId&gt;
			&lt;artifactId&gt;jersey-client&lt;/artifactId&gt;
			&lt;version&gt;1.5&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.jersey.contribs&lt;/groupId&gt;
			&lt;artifactId&gt;jersey-multipart&lt;/artifactId&gt;
			&lt;version&gt;1.5&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.jersey.contribs&lt;/groupId&gt;
			&lt;artifactId&gt;jersey-apache-client&lt;/artifactId&gt;
			&lt;version&gt;1.5&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.jersey&lt;/groupId&gt;
			&lt;artifactId&gt;jersey-json&lt;/artifactId&gt;
			&lt;version&gt;1.5&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.jersey&lt;/groupId&gt;
			&lt;artifactId&gt;jersey-bundle&lt;/artifactId&gt;
			&lt;version&gt;1.8&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;

TAGS
AUG Leaders

Atlassian Community Events