尝试在用户资源http://localhost:8080/Trempiada/users/12345上调用GET方法时,出现上述错误消息。
或者只需输入项目的主要URI:http://localhost:8080/Trempiada
我正在使用Spring的DI侦听器,并且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>


我应该检查什么,问题可能出在哪里?

最佳答案

默认情况下,基于war文件名的Tomcat中Web应用程序的上下文路径是。因此,上下文路径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上的端点。

07-24 13:14