我正在尝试找到一种简单的方法来使用 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) {
}
}
...但避免灰熊依赖