我是underflow的新手,我正在开发一个独立的应用程序,将其用作嵌入式服务器。我希望我可以在我的嵌入式underflow中部署web套接字、servlet和restfull htmls服务。
到目前为止,我只使用web套接字和servlet进行了测试,问题是每个套接字都能正常工作,但将它们部署在一起,如果我删除servlet页面,则不会在没有错误的情况下运行测试。
这是我的代码:
/*
* Create the appWebSocketDeploymentInfo and configure
*/
WebSocketDeploymentInfo appWebSocketDeploymentInfo = new WebSocketDeploymentInfo();
appWebSocketDeploymentInfo.setBuffers(new ByteBufferSlicePool(BufferAllocator.BYTE_BUFFER_ALLOCATOR, 17000, 17000 * 16));
appWebSocketDeploymentInfo.addEndpoint(WebSocketEndpoint1.class);
appWebSocketDeploymentInfo.addEndpoint(WebSocketEndpoint2.class);
/*
* Create the appDeploymentInfo and configure
*/
DeploymentInfo appDeploymentInfo = Servlets.deployment()
.setClassLoader(Server.class.getClassLoader())
.setContextPath("/myapp)
.setDeploymentName("app.war")
.setResourceManager(new FileResourceManager(new File("src/main/webapp"), 1024))
.addServlets(Servlets.servlet("HomeServlet", HomeServlet.class).addMapping("/home"))
.setResourceManager(new ClassPathResourceManager(Server.class.getClassLoader(), Server.class.getPackage()))
.addServletContextAttribute(WebSocketDeploymentInfo.ATTRIBUTE_NAME, appWebSocketDeploymentInfo);
/*
* Create the deploymentManager
*/
deploymentManager = Servlets.defaultContainer().addDeployment(appDeploymentInfo);
/*
* Deploy the app
*/
deploymentManager.deploy();
/*
* Create the path handle
*/
pathHandler = Handlers.path(Handlers.redirect("/myapp/home")).addPrefixPath("/myapp", deploymentManager.start());
/*
* Create the server
*/
undertowServer = Undertow.builder().addHttpListener(DEFAULT_PORT, DEFAULT_IP).setHandler(pathHandler).build();
javascript日志错误为
到"ws://localhost:8080/fermat/node channel"的WebSocket连接失败:WebSocket握手期间出错:意外的响应代码:404
经过广泛的测试和研究,我找到了正确的方法来进行配置和启动服务器,还将添加对其他技术的支持,如:
- WebSocket
- Resteasy
- 焊接
我的最终代码:
UndertowJaxrsServer server = new UndertowJaxrsServer();
Undertow.Builder serverBuilder = Undertow.builder().addHttpListener(DEFAULT_PORT, DEFAULT_IP);
ServletContainer servletContainer = Servlets.defaultContainer();
/*
* Create the App WebSocketDeploymentInfo and configure
*/
WebSocketDeploymentInfo appWebSocketDeploymentInfo = new WebSocketDeploymentInfo();
appWebSocketDeploymentInfo.setBuffers(new ByteBufferSlicePool(BufferAllocator.BYTE_BUFFER_ALLOCATOR, 17000, 17000 * 16));
appWebSocketDeploymentInfo.addEndpoint(WebSocketNodeChannelServerEndpoint.class);
appWebSocketDeploymentInfo.addEndpoint(WebSocketClientChannelServerEndpoint.class);
/*
* Create the App ResteasyDeployment and configure
*/
ResteasyDeployment deployment = new ResteasyDeployment();
deployment.setApplicationClass(JaxRsActivator.class.getName());
deployment.setInjectorFactoryClass("org.jboss.resteasy.cdi.CdiInjectorFactory");
/*
* Create the App DeploymentInfo and configure
*/
DeploymentInfo appDeploymentInfo = server.undertowDeployment(deployment, APP_NAME);
appDeploymentInfo.setClassLoader(FermatEmbeddedNodeServer.class.getClassLoader())
.setContextPath(APP_NAME)
.setDeploymentName(WAR_APP_NAME)
.addServletContextAttribute(WebSocketDeploymentInfo.ATTRIBUTE_NAME, appWebSocketDeploymentInfo)
.addServlets(Servlets.servlet("HomeServlet", HomeServlet.class).addMapping("/home"))
.addListeners(Servlets.listener(org.jboss.weld.environment.servlet.Listener.class));
server.deploy(appDeploymentInfo);
server.start(serverBuilder);
渐变依赖性
compile 'io.undertow:undertow-core:1.3.6.Final'
compile 'io.undertow:undertow-servlet:1.3.6.Final'
compile 'io.undertow:undertow-websockets-jsr:1.3.6.Final'
compile 'org.jboss.resteasy:resteasy-undertow:3.0.13.Final'
compile 'org.jboss.resteasy:resteasy-cdi:3.0.13.Final'
compile 'org.jboss.weld.servlet:weld-servlet:2.3.1.Final'
compile 'javax:javaee-api:7.0'