0

我已将我的资源分成接口 - impl,因为它更有意义,但如果我让它扫描我的资源,最新版本的球衣似乎不支持这一点。

如何在 web.xml 中手动定义资源?如果我在 web.xml 中手动定义资源 impl,这会起作用吗?

谢谢亚历克斯

4

1 回答 1

1

[1]。创建一个扩展javax.ws.rs.core.Application的 java 类并注册您的资源:

public class MyRESTApp 
     extends Application {
    @Override
    public Set<Class<?>> getClasses() {
        Set<Class<?>> s = new HashSet<Class<?>>();

        s.add(MyResource.class);
        ....

        return s;
    }
}

[2]。在 web.xml 中注册应用程序如果您使用的是spring,请在 web.xml 中:

<servlet>
    <servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>
    <init-param>
    <param-name>javax.ws.rs.Application</param-name>
        <param-value>com.xxx.MyRESTApp</param-value>
    </init-param>
    ...
</servlet>

如果您使用的是guice,请在 web.xml 中:

<filter>
    <filter-name>guiceFilter</filter-name>
    <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
</filter>

<filter-mapping>
   <filter-name>guiceFilter</filter-name>
   <url-pattern>/*</url-pattern>
</filter-mapping>

<listener>
    <listener-class>com.xx.MyGuiceServletContextListener</listener-class>
</listener>

然后创建扩展com.google.inject.servlet.GuiceServletContextListener的 java 类 MyGuiceServletContextListener

public class MyGuiceServletContextListener 
     extends GuiceServletContextListener {
    @Override
    protected Injector getInjector() {
        Guice.createInjector(new JerseyServletModule() {
@Override
protected void configureServlets() {
        // Route all requests through GuiceContainer
        // IMPORTANT
        // If this property is not defined guice tries to find the @Path annotated types defied at the injector
        Map<String,String> params = new HashMap<String, String>();
        params.put("javax.ws.rs.Application",
        MyRESTApp.class.getName());
        serve("/*").with(GuiceContainer.class,
                         params);
        });
    }
}
于 2013-10-19T21:17:20.377 回答