我根据所述的详细信息配置了球衣(带有tomcat服务器),直到第6.3步骤6.3此处:http://www.vogella.com/tutorials/rest/article.html#jerseyprojectsetup
下面是我的web.xml文件,唯一的区别是 jersey.config.server.provider.packages
指令具有;
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.vogella.jersey.first</param-value>
因为com.vogella.jersey.first
是他们的包装名称,而我选择将我的默认包(jerseytest)指向我的包装名称
这是我的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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>jerseytest</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<!-- Register resources and providers under com.vogella.jersey.first package. -->
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>jerseytest</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>
当我在tomcat服务器上运行应用程序时,我会得到:
HTTP状态404 - 找不到
类型状态报告
Message /jerseytest/
说明原始服务器找不到当前表示 对于目标资源或不愿意透露一个存在。
apache tomcat/8.5.23
我将浏览器指向教程中提到的终点时: http://localhost:8080/com.vogella.jersey.first/rest/hello
我发现一个未找到错误:
HTTP状态404 - 找不到
类型状态报告
Message Not Found
说明原始服务器找不到当前表示 对于目标资源或不愿意透露一个存在。
apache tomcat/8.5.23
当我将浏览器直接指向http://localhost:8080/rest/hello
时我得到:
HTTP状态404 - 找不到
类型状态报告
Message /rest/hello
说明原始服务器找不到当前表示 对于目标资源或不愿意透露一个存在。
apache tomcat/8.5.23
我的Java类与指令中的示例相同,除了我的默认包中我的Java类:
:import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
// Plain old Java Object it does not extend as class or implements
// an interface
// The class registers its methods for the HTTP GET request using the @GET annotation.
// Using the @Produces annotation, it defines that it can deliver several MIME types,
// text, XML and HTML.
// The browser requests per default the HTML MIME type.
//Sets the path to base URL + /hello
@Path("/hello")
public class Hello {
// 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> ";
}
}
我多次挣扎着这个问题。
我目前正在使用的解决方案是天气WebApp(或您保留JSP(例如JSP)的文件夹)在部署组件下。
这样做右键单击project > Build Path > Configure Build path > Deployment Assembly > Add(right hand side) > Folder > (add your jsp folder. In default case it is src/main/webapp)
每个方法都需要指定路径
这样:
@GET
@Path("testOne")
@Produces(MediaType.TEXT_HTML)