如何在不使用相应类中的ServerEndpointOnOpenOnMessageOnClose批注的情况下为特定类添加@ServerEndpoint("/myUrl")@OnOpen@OnMessage@OnClose事件处理程序,使用嵌入式tomcat?

我相信这与以下几方面相似:

Tomcat tomcat = new Tomcat();
tomcat.setPort(8080);
Context context = tomcat.addWebapp("/", new File(webappDir).getAbsolutePath());
context.setSessionTimeout(10080);
ServerContainer serverContainer = (ServerContainer) context.getServletContext().getAttribute(ServerContainer.class.getName());
ServerEndpointConfig serverEndpointConfig = ServerEndpointConfig.Builder.create(MyClass.class, "myUrl").build();
serverContainer.addEndpoint(serverEndpointConfig);


但是serverContainer给您java.lang.NullPointerException,我不确定这是否是正确的方法。

最佳答案

一种替代方法是扩展javax.websocket.Endpoint

https://blogs.oracle.com/arungupta/entry/websocket_client_and_server_endpoint

public class MyEndpoint extends Endpoint {

  @Override
  public void onOpen(final Session session, EndpointConfig ec) {
    session.addMessageHandler(new MessageHandler.Whole<String>() {

      @Override
      public void onMessage(String text) {
        try {
          session.getBasicRemote().sendText(text);
        } catch (IOException ex) {
          Logger.getLogger(MyEndpoint.class.getName()).log(Level.SEVERE, null, ex);
        }
      }
  });
}

关于java - 将ServerEndpoint添加到没有注释的Tomcat实例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29945868/

10-10 01:04