との統合に成功しましGrizzly v2.1.9
た。しかし、バージョンに移行しようとすると機能しませんでした。Jersey
Spring
Grizzly
2.2.19
の元のコードGrizzly v2.1.9
は次のとおりです。
HttpServer server = new HttpServer();
NetworkListener listener = new NetworkListener("grizzly2", "localhost", 3388);
server.addListener(listener);
ServletHandler sa = new ServletHandler();
sa.setContextPath("/");
sa.setServletInstance(new SpringServlet());
sa.addContextParameter("contextConfigLocation", "classpath:spring-context.xml");
sa.addServletListener("org.springframework.web.context.ContextLoaderListener");
sa.addServletListener("org.springframework.web.context.request.RequestContextListener");
ServerConfiguration config = server.getServerConfiguration();
config.addHttpHandler(sa, new String[] {"/"});
server.start();
そして、新しいコードGrizzly v2.2.19
は以下のとおりです
HttpServer server = new HttpServer();
NetworkListener listener = new NetworkListener("grizzly2", "localhost", 3388);
WebappContext ctx = new WebappContext("ctx","/");
final ServletRegistration reg = ctx.addServlet("spring", new SpringServlet());
reg.addMapping("/*");
ctx.addContextInitParameter("contextConfigLocation", "classpath:spring-context.xml");
ctx.addListener("org.springframework.web.context.ContextLoaderListener");
ctx.addListener("org.springframework.web.context.request.RequestContextListener");
ctx.deploy(server);
server.start();
新しいコードは、例外なくコンパイルして実行できます。ただし、別のメソッドに転送する必要のあるすべてのURLJersey
は、すべてデフォルトページ「/」に転送されるようになりました。
アップデート
同じ問題を抱えている人のために。
Grizzly2.2.20以降で修正されています