目前我正在将氛围实现到我的main()方法中,就像这样
public static void main(String[] args) throws IOException {
final HttpServer server = HttpServer.createSimpleServer(".", 8181);
WebappContext ctx = new WebappContext("Socket", "/");
//allow spring to do all of it's stuff
ctx.addListener("org.springframework.web.context.ContextLoaderListener");
//enable web socket support
final WebSocketAddOn addon = new WebSocketAddOn();
for (NetworkListener listener : server.getListeners()) {
listener.registerAddOn(addon);
//if false, local files (html, etc.) can be modified without restarting the server
//@todo experiment with this setting in production vs development
listener.getFileCache().setEnabled(false);
}
//add jersey servlet support
ServletRegistration jerseyServletRegistration = ctx.addServlet("JerseyServlet", new ServletContainer());
//jerseyServletRegistration.setInitParameter("com.sun.jersey.config.property.packages", "come.fettergroup.production.queue.resources");
jerseyServletRegistration.setLoadOnStartup(1);
jerseyServletRegistration.addMapping("/api/*");
//add atmosphere servlet support
ServletRegistration atmosphereServletRegistration = ctx.addServlet("AtmosphereServlet", new AtmosphereServlet());
atmosphereServletRegistration.setInitParameter("org.atmosphere.websocket.messageContentType", "application/json");
atmosphereServletRegistration.setInitParameter("com.sun.jersey.api.json.POJOMappingFeature", "true");
atmosphereServletRegistration.setLoadOnStartup(1);
如何使用此XML文件并完成相同的操作,但是在上面的代码中?
<atmosphere-handlers>
<atmosphere-handler context-root="/api" class-name="org.atmosphere.handler.ReflectorServletProcessor">
<property name="servletClassName"
value="com.sun.jersey.spi.spring.container.servlet.SpringServlet" />
</atmosphere-handler>
</atmosphere-handlers>
我已经考虑过向Atmosphere分配处理程序,但是它需要AtmosphereFramework
的一个我无法获得的实例。
答案 0 :(得分:2)
您可以通过以下方式添加AtmosphereHandler:
AtmosphereServlet s = new AtmosphereServlet();
AtmosphereFramework f = s.framework();
ReflectorServletProcessor r = new ReflectorServletProcessor();
r.setServletClassName("com.sun.jersey.spi.spring.container.servlet.SpringServlet");
f.addAtmosphereHandler("/api/*", r);
ServletRegistration atmosphereServletRegistration = ctx.addServlet("AtmosphereServlet", s);
感谢您填写BTW问题,将改进常见问题解答
- Jeanfrancois