我正在尝试使用 Grizzly 部署基于 Jersey-Spring 的 REST API com.sun.grizzly.http.embed.GrizzlyWebServer
。我也想使用它来提供静态内容。这是我所拥有的:
String host = "localhost";
int port = 8081;
// For jersey + Spring
ServletAdapter jAdapter = new ServletAdapter("jersey");
jAdapter.setContextPath("/api");
jAdapter.setServletInstance(new SpringServlet());
jAdapter.addContextParameter("contextConfigLocation", "classpath:spring-context.xml");
jAdapter.addServletListener("org.springframework.web.context.ContextLoaderListener");
jAdapter.addServletListener("org.springframework.web.context.request.RequestContextListener");
// create GrizzlyWebServer
GrizzlyWebServer grizzlyServer = new GrizzlyWebServer(host, port, "webapp", false);
// add jersey adapter
grizzlyServer.addGrizzlyAdapter(jAdapter, new String[]{"/api"});
// start server
grizzlyServer.start();
System.out.println("Start running server(host: " + host + ",port: " + Integer.toString(port));
System.out.println("Press any key to stop the server.");
// hang on
System.in.read();
// stop
grizzlyServer.stop();
“泽西适配器”工作正常,但我无法获取“webapp”文件夹中的静态内容以提供服务(404 错误)。
我的项目文件夹结构如下:
GrizzlyTest
-- src
| |
| -- main
| |
| -- java
| -- resources
| |
| -- webapp
| | |
| | -- index.html
| -- spring-context.xml
|
-- pom.xml
我在为该行中的“webapp”提供路径时犯了错误new GrizzlyWebServer(host, port, "webapp", false);
吗?
或者,还有其他方式来提供静态内容吗?