带有嵌入式服务器的 JAX-RS

2022-09-03 02:16:32

澄清:这个问题是关于GZIPping基于JAX-WS的REST服务,但我决定改变主题,使其更容易找到

我正在通过 JAX-WS 实现 REST 服务,并使用标准发布它(原因是我想避免使用 servlet 容器或应用程序服务器)。Provider <Source>Endpoint

有没有办法使服务器到gzip响应内容,如果存在?Accept-Encoding: gzip


操作方法

提供的示例实际上有效,它允许您在没有servlet容器的情况下在嵌入式轻量级服务器之上创建JAX-RS样式的服务器,但是需要考虑的时刻很少。nicore

如果您希望自己管理课程(并在启动期间节省时间),则可以使用以下方法:

JAX-RS 你好世界级:

@Path("/helloworld")
public class RestServer {

    @GET
    @Produces("text/html")
    public String getMessage(){
        System.out.println("sayHello()");
        return "Hello, world!";
    }
}

主要方法:

对于简单服务器:

public static void main(String[] args) throws Exception{
    DefaultResourceConfig resourceConfig = new DefaultResourceConfig(RestServer.class);
    // The following line is to enable GZIP when client accepts it
    resourceConfig.getContainerResponseFilters().add(new GZIPContentEncodingFilter());
    Closeable server = SimpleServerFactory.create("http://0.0.0.0:5555", resourceConfig);
    try {
        System.out.println("Press any key to stop the service...");
        System.in.read();
    } finally {
        server.close();
    }
}

对于灰熊2

public static void main(String[] args) throws Exception{
    DefaultResourceConfig resourceConfig = new DefaultResourceConfig(RestServer.class);
    // The following line is to enable GZIP when client accepts it
    resourceConfig.getContainerResponseFilters().add(new GZIPContentEncodingFilter());
    HttpServer server = GrizzlyServerFactory.createHttpServer("http://0.0.0.0:5555" , resourceConfig);
    try {
        System.out.println("Press any key to stop the service...");
        System.in.read();
    } finally {
        server.stop();
    }
}

已解决的依赖项:

简单:

灰 熊:

泽西:

通知

确保存档未进入类路径,因为它与 Jersey 的实现冲突。这里最糟糕的事情是没有日志记录的静默404错误 - 只记录了一个关于级别的小注释。javax.ws.rsFINER


答案 1

如果你真的想用Java做REST,我建议你使用JAX-RS实现(RESTeasy,Jersey...)。

如果您主要关心的是 Servlet 容器的依赖性,那么可以使用 JAX-RS RuntimeDelegate 将应用程序注册为 JAX-RS 端点。

// Using grizzly as the underlaying server
SelectorThread st = RuntimeDelegate.createEndpoint(new MyApplication(), SelectorThread.class);

st.startEndpoint();

// Wait...
st.stopEndpoint();

关于编码,每个 JAX-RS 提供程序都有不同的方法。泽西岛提供了一个过滤器,用于透明地完成编码。RESTEasy为此提供了一个注释GZIP

编辑

我做了一些小测试。假设您正在使用Maven,以下两件事肯定会对您有用。

使用球衣 + 简单服务器

    public static void main( String[] args ) throws Exception {

    java.io.Closeable server = null;

    try {
        // Creates a server and listens on the address below.
        // Scans classpath for JAX-RS resources
        server = SimpleServerFactory.create("http://localhost:5555");
        System.out.println("Press any key to stop the service...");
        System.in.read();
    } finally {
        try {
            if (server != null) {
                server.close();
            }
        } finally {
            ;
        }
    }
}

具有 maven 依赖项

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-core</artifactId>
    <version>1.10</version>
</dependency>
<dependency>
    <groupId>com.sun.jersey.contribs</groupId>
    <artifactId>jersey-simple-server</artifactId>
    <version>1.10</version>
</dependency>

或者使用球衣+灰熊2

public static void main(String[] args) throws Exception {

    HttpServer server = null;

    try {
        server = GrizzlyServerFactory.createHttpServer("http://localhost:5555");
        System.out.println("Press any key to stop the service...");
        System.in.read();
    } finally {
        try {
            if (server != null) {
                server.stop();
            }
        } finally {
            ;
        }
    }
}

具有 maven 依赖项

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-core</artifactId>
    <version>1.10</version>
</dependency>
<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-grizzly2</artifactId>
    <version>1.10</version>
</dependency>

老实说,我也无法让样品工作。当然,也有一种方法可以开箱即用地启动RESTEasy,但我目前还不记得了。RuntimeDelegate


答案 2

对输出进行 gzip 化是 JAX WS 实现的可响应性。您应该参考服务器(Tomcat,Glassfish,JBoss等)的文档来配置您的http网络侦听器。