这是我第一次使用 Eclipse,这让我非常愤怒。
我安装了 Tomcat 6.0,下载了 Jersey 库,并按照以下教程进行操作:http ://www.vogella.com/articles/REST/article.html#first_client
我将项目名称创建为 RestExample,其中有一个包 de.jay.jersey.first,其中有一个类 HelloWorldResource,如下所示:
package de.jay.jersey.first;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/hello")
public class HelloWorldResource {
// This method is called if TEXT_PLAIN is request
@GET
@Produces(MediaType.TEXT_PLAIN)
public String sayPlainTextHello() {
return "Hello Jersey";
}
// This method is called if XML is request
@GET
@Produces(MediaType.TEXT_XML)
public String sayXMLHello() {
return "<?xml version=\"1.0\"?>" + "<hello> Hello Jersey" + "</hello>";
}
// This method is called if HTML is request
@GET
@Produces(MediaType.TEXT_HTML)
public String sayHtmlHello() {
return "<html> " + "<title>" + "Hello Jersey" + "</title>"
+ "<body><h1>" + "Hello Jersey" + "</body></h1>" + "</html> ";
}
}
我的 web.xml 看起来像
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>RestExample</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>de.jay.jersey.first</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>
我正在尝试使用 curl 作为:
curl http://localhost:8081/RestExample/rest/hello
Apache Tomcat/6.0.35 - 错误报告
HTTP 状态 404 - /RestExample/rest/Hello
类型状态报告
消息/RestExample/rest/hello
描述 请求的资源 (/ RestExample /rest/hello) 不可用。
Apache Tomcat/6.0.35问题是我应该在 web.xml 中更改什么以便我可以访问该资源?
我尝试了 RestExample/de.jay.jersey.first/rest/hello,但它仍然不起作用。TOmcat 运行没有错误。