我创建了这个Websocket项目Spring Websocket,它的工作原理非常好。 我将在我的项目中介绍这个例子。在那里,我要求动态创建或删除/销毁(聊天)组。
在我的WebsocketConfig-类中,可以通过以下方式静态添加端点:
registry.addEndpoint("/hello").withSockJS(); (also see below)
是否有可能动态添加端点? 我的用例是我拥有属于一家或多家公司的公司和员工:
n m (m:n relation)
公司< -------->员工
可以动态创建公司(通过单击“创建”按钮)。然后,之前注册的员工可以添加到公司。 因此,这意味着如果创建公司(并且最少2名员工被添加到公司),则应该添加端点。
我很乐意在这方面提供任何有用的答案。 非常感谢!
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
@Override
public void configureMessageBroker(MessageBrokerRegistry config) {
// Prefix for messages FROM server TO client
config.enableSimpleBroker("/topic");
// Prefix for messages FROM client TO server
config.setApplicationDestinationPrefixes("/app");
// /app wird beim client - sendName verwendet: stompClient.send("/app/hello", {}, JSON.stringify({ 'name': name
// }));
}
@Override
public void registerStompEndpoints(final StompEndpointRegistry registry) {
registry.addEndpoint("/hello").withSockJS();
}
}
[编辑] 向多个客户发送消息,但不向所有客户发送消息。这是我目前的代码。发送给具有相同ID的所有人工作正常,但我不知道如何发送消息到例如4个客户。 谢谢你的帮助!
@MessageMapping("/chat/{institutionId}")
public void greeting(@DestinationVariable String institutionId, final GreetingHelloMessage message) throws Exception {
final Greeting greeting = new Greeting(institutionId, "Hello " + institutionId + " - " + message.getName());
simpMessagingTemplate.convertAndSend("/topic/chat/" + institutionId, greeting);
}
答案 0 :(得分:3)
您应该查看路径参数的方向。
如果您可以使用localhost:8080 / chat / {GROUP_NAME}之类的构造,则无需为每个聊天使用不同的端点。