5

我正在尝试找到一种简单的方法来使用 JAX-RS 2.0 和使用 Jersey 和/或 Java SE 内置 http 服务器的 Java SE 发布我的 RESTful Web 服务。

我想将我的依赖项保持在最低限度,所以我想避免灰熊,也不想使用任何外部应用程序服务器。

您能指出我如何发布具有此要求的休息服务吗?

提前致谢,

我的意思是实现这样的目标:

public static void main(String args[]) {
    try {
        final HttpServer server = GrizzlyHttpServerFactory.createHttpServer("http://localhost:8080/calculator/",new ResourceConfig(SumEndpoint.class));

        System.in.read();
        server.stop();

} catch (IOException ex) {
}

}

...但避免灰熊依赖

4

1 回答 1

6

如果你只是依赖

<dependency>
    <groupId>org.glassfish.jersey.containers</groupId>
    <artifactId>jersey-container-jdk-http</artifactId>
    <version>2.2</version>
</dependency>

然后你可以启动服务器

JdkHttpServerFactory.createHttpServer(URI.create("http://localhost:8090/root"),
        new MyApplication());

其中 MyApplication 扩展 ResourceConfig 以获取资源扫描。

@ApplicationPath("/")
public class MyApplication extends ResourceConfig {

    public MyApplication() {
        packages("...");
    }
    @GET
    @Produces("text/plain")
    public Response foo() {

        return Response.ok("Hey, it's working!\n").build();
    }
}

可能有更好的方法来控制服务器生命周期,但这暂时让我难以理解。

于 2013-08-19T14:35:50.290 回答