尝试在用户资源上调用GET方法时,我收到上述错误消息:http://localhost:8080/Trempiada/users/12345。 或者只输入项目的主要URI:http://localhost:8080/Trempiada。 我正在使用Spring的侦听器,而且tomcat服务器加载时没有任何异常。 这是我的web.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<!-- This web.xml file is not required when using Servlet 3.0 container,
see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
<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_2_5.xsd" version="2.5">
<!-- Configure ContextLoaderListener to use JavaConfigWebApplicationContext
instead of the default XmlWebApplicationContext -->
<context-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>
<!-- Configuration locations must consist of one or more comma- or space-delimited
fully-qualified @Configuration classes -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>org.sharon.trempiada.resources.ResourcesConfiguration org.sharon.trempiada.services.ServicesConfiguration</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>trempiada</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>org.sharon.trempiada.resources</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>trempiada</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
我应该检查什么以及问题在哪里?
答案 0 :(得分:0)
默认情况下,Tomcat中的webapp的上下文路径基于war文件名。因此,Trempiada
的上下文路径意味着war文件名为Trempiada-1.0.war
。你能证实这是这种情况吗?如果没有,您需要调整URL以包含实际的上下文路径。 Tomcat通常在启动时记录它。
第二部分是资源端点。要匹配您提供的URL,您需要一个资源类,如下所示:
@Path("users")
public class UserResource {
...
@GET
@Produces("application/json")
@Path("{id:\\d+}")
public User getUser() {
// Return user object.
}
}
如果您这样做,您就可以http://localhost:8080/Trempiada/users/12345
访问您的终端。