如何让Jetty自动发现Websocket端点?

时间:2017-03-31 10:16:13

标签: java websocket jetty

我正在使用嵌入式Jetty服务器,除其他外,还提供Websocket端点服务。我正在加载它:

WebAppContext webAppContext = ...
// server.setHandler call in between here somewhere
ServerContainer container = WebSocketServerContainerInitializer.configureContext(webAppContext);
container.addEndpoint(MyEndpoint.class);

我必须在这里明确指定我的端点类。我可以使用这些类上的@ServerEndpoint注释来让Jetty发现它们吗?

0 个答案:

没有答案