Jersey设置2个servlet

时间:2016-07-31 16:12:33

标签: java servlets jax-rs jersey-2.0 resty-gwt

我试图用Jersey设置我的项目基本上有两个servlet:一个用于客户端应用程序访问的私有servlet,另一个用作API的公共服务器。 api调用是私有调用的一个子集。 (如果这是相关的,我的客户端是与RestyGWT的GWT)。我的资源都存储在:

com.path.to.server.resources.internal
com.path.to.server.resources.api

私有servlet应该包含这两个包,而api应该只使用api包。

我希望我的内部调用看起来像这样:

https:// localhost:8445 / resources / authentication / login

我的api打电话看起来像这样:

https:// localhost:8445 / api / users / getuser

我的web.xml如下所示:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 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">

    <!-- Servlets -->
    <servlet>
        <servlet-name>javax.ws.rs.core.Application</servlet-name>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>com.path.to.server.resources.exceptionmappers;com.path.to.server.resources.api;com.path.to.server.resources.internal</param-value>
        </init-param>
    </servlet>

    <servlet>
        <servlet-name>com.path.to.server.ApiApplication</servlet-name>
    </servlet>

    <servlet-mapping>
        <servlet-name>javax.ws.rs.core.Application</servlet-name>
        <url-pattern>/resources/*</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>com.path.to.server.ApiApplication</servlet-name>
        <url-pattern>/api</url-pattern>
    </servlet-mapping>

</web-app>

我有这样的ApiApplication设置:

public class ApiApplication extends ResourceConfig
{
    public ApiApplication()
    {
        System.out.println("SETTING UP API");
        packages("com.path.to.server.resources.exceptionmappers;com.path.to.server.resources.api");
    }
}

现在我已完成所有设置,我正试图点击我的服务。我使用的DirectRestService如下所示:

@Path("resources/authentication")
public interface AuthenticationService extends BaseService
{
    @POST
    @Path("/login/{loginType}")
    @Produces(MediaType.APPLICATION_JSON)
    Session login(@HeaderParam("Authorization") String authorization, @PathParam("loginType") UserTypes loginType);

    @POST
    @Path("/findActiveSession")
    @Produces(MediaType.APPLICATION_JSON)
    Session findActiveSession();
}

实现它的服务器资源如下所示:

@Path("authentication")
public class AuthenticationResource extends BaseResource implements AuthenticationService
{
    public Session login(String authorization, UserTypes loginType)
    {
        // Code to do stuff
    }

    public Session findActiveSession()
    {
        // Code to do stuff
    }
}

当我访问https:// localhost:8445时,我的客户端会调用 findActiveSession()方法,但我会收到404. Chrome网络中显示的服务网址监视器看起来像这样:

https:// localhost:8445 / resources / authentication / findActiveSession

关于哪些事情需要什么路径,这一切都非常令人困惑。我不确定的事情:

AuthenticationResource路径是否正确?它甚至需要Path注释吗?

私有servlet使用javax.ws.rs.core.Application是否正确?

我是否正确使用Application子类(ApiApplication)设置自定义servlet?

1 个答案:

答案 0 :(得分:0)

我终于想出了一个有效的解决方案。我不知道它是否完全正确,但它给了我想要的结果:

我的web.xml

let medicine1 = Medicine.sharedInstance()
medicine1.frequency = 2
print("medicine1 \(medicine1)")
print("medicine1.frequency: \(medicine1.frequency)")

        let medicine2 = Medicine()
        medicine2.frequency = 4
        print("medicine2 \(medicine2)")
        print("medicine2.frequency: \(medicine2.frequency)")
        print("medicine1.frequency: \(medicine1.frequency)")

我最终还没有需要Application子类。