Spring/Jersey 休息 API 与多个资源 class returns 404

Spring/Jersey Rest API with multiple resource class returns 404

我正在创建基于 spring/jersey 的休息 API 和我的应用程序 returns 404。我知道有很多类似的帖子,我尝试了解决方案,但我的情况有点有点不同的是,当我只创建一个 class、app1.class 并指定路径(“/”)时,它可以工作,但是当我添加另一个 class 并指定另一条路径时,这是应用程序 1 的子路径 (/v1.0/app/request),也可以。但是当我添加另一个 class app3.class,它有路径(/v1.0/app/response),然后,当我编译 war 并将其放入容器时, tomcat7,不行。无法访问任何已定义的路径。

所有资源 class 都在包 com.example.restservice 中。

我的 web.xml 如下所示:

         <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"  
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web- 
     app_3_0.xsd">


<display-name>publishing-service</display-name>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
    <servlet-name>jersey-servlet</servlet-name>
    <servlet-class>
        com.sun.jersey.spi.spring.container.servlet.SpringServlet
    </servlet-class>
    <init-param>
        <param-name>com.sun.jersey.config.property.packages</param-name>
        <param-value>com.example.restservice</param-value>
    </init-param>
    <init-param>
        <param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
        <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>jersey-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

我刚刚查看了apache的日志,可能发现了问题。我在 applicationContext.xml 中定义了一个 bean,因为我使用 annocation @autowired 来创建实例,但是 tomcat 无法实例化这个 bean,它找不到 com.example.validationserviceImpl,这不是一个本地 class,但在 pom.xml 中定义的依赖项中。如何定义罐子中的 bean?

您可以尝试的一个选项是使用子资源定位器添加一个间接级别:

@Component
@Path("/")
public class AppResource {
    @Autowired private App1 app1;
    @Autowired private App2 app2;
    @Autowired private App3 app3;

    @Path("")
    public App1 app1Resource() {
        return app1;
    }

    @Path("/v1.0/app/request")
    public App2 app2Resource() {
        return app2;
    }

    @Path("/v1.0/app/response")
    public App3 app3Resource() {
        return app3;
    }
}

然后删除classes App1、App2、App3 上的class 级@Path 注释。因此,例如,App1 变为:

@Component
public class app1 {
    @GET
    @Path("/health")
    public Response health() {...}
}

或者 -- 不添加额外的 class -- 添加子资源定位器到 App1:

@Component
@Path("/")
public class App1 {
    @Autowired private App2 app2;
    @Autowired private App3 app3;

    @GET
    @Path("/health")
    public Response health() {...}

    @Path("/v1.0/app/request")
    public App2 app2Resource() {
        return app2;
    }

    @Path("/v1.0/app/response")
    public App3 app3Resource() {
        return app3;
    }
}