我尝试编写一个简单的RESTEasy示例来了解它是如何工作的。我在这里找到了信息: http://www.mkyong.com/webservices/jax-rs/integrate-jackson-with-resteasy/ http://www.mkyong.com/webservices/jax-rs/resteasy-hello-world-example/
这很简单,我理解它是如何工作的另一个相似的Restful例子并且工作得很好。
@Path("/person")
public class PersonResource {
private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(PersonResource.class);
private final static String FIRST_NAME = "firstName";
private final static String LAST_NAME = "lastName";
private final static String EMAIL = "email";
private Person person = new Person(1, "Sample", "Person", "sample_person@jerseyrest.com");
@GET
@Produces(MediaType.TEXT_PLAIN)
public String respondAsReady() {
return "Entered PersonResource";
}
@GET
@Path("/get")
@Produces("application/json")
public Person getProductInJSON() {
return person;
}
@GET
@Path("sample")
@Produces(MediaType.APPLICATION_JSON)
public Response getSamplePerson() {
LOG.debug("getSamplePerson()");
JSONObject jsonObject = new JSONObject();
try {
jsonObject.put("Person First Name:", person.getFirstName());
jsonObject.put("Person Last Name:", person.getLastName());
} catch (JSONException e) {
LOG.debug("jsonObect.put failed");
}
String result = "jsonObject:" + jsonObject;
return Response.status(200).entity(result).build();
}
}
我的web.xml:
<context-param>
<param-name>resteasy.resources</param-name>
<param-value>com.restexample.PersonResource</param-value>
</context-param>
<listener>
<listener-class>
org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
</listener-class>
</listener>
<servlet>
<servlet-name>resteasy-servlet</servlet-name>
<servlet-class>
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>resteasy-servlet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
我的pom.xml:
<!-- RESTEasy-->
<repositories>
<repository>
<id>JBoss repository</id>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.11.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson-provider</artifactId>
<version>3.0.11.Final</version>
</dependency>
</dependencies>
当我尝试http://localhost:8080/rest/person/sample或任何其他路径来访问方法时,会出现一个空白屏幕。我没有404找不到!只是空白屏幕。 (我正在使用TomCat)。任何人都可以帮助我吗?
答案 0 :(得分:1)
我发现了什么问题。在我的pom.xml中,我有这个:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
此侦听器正在创建应用程序上下文。直到现在都没有错。 web.xml中定义的ResteasyBootstrap也提供了上下文:
<listener>
<listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class>
</listener>
因为两个侦听器都提供了不同的上下文,所以URL不会返回404 NOT FOUND,也不会返回良好的结果。
解决方案:
删除xml中的侦听器ContextLoaderListener,一切都会正常工作。
答案 1 :(得分:0)
试试这个:
@GET
@Path("sample")
@Produces(MediaType.APPLICATION_JSON)
public Response getSamplePerson() {
LOG.debug("getSamplePerson()");
return Response.status(Status.OK).entity(person).build();
}
答案 2 :(得分:0)
尝试在web.xml中添加:
<context-param>
<param-name>resteasy.servlet.mapping.prefix</param-name>
<param-value>/rest</param-value>
</context-param>
https://docs.jboss.org/resteasy/docs/1.0.1.GA/userguide/html/Installation_Configuration.html