2024-02-21 11:47:40 +08:00
|
|
|
package com.rax.vital.config;
|
|
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
|
|
|
|
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
|
|
|
|
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;
|
|
|
|
import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@EnableWebSocketMessageBroker
|
|
|
|
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void registerStompEndpoints(StompEndpointRegistry registry) {
|
|
|
|
registry.addEndpoint("/rax/chat", "/rax/ai-medicine", "/rax/doctor-medicine", "/rax/vital-signs");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void configureMessageBroker(MessageBrokerRegistry registry) {
|
|
|
|
registry.enableSimpleBroker("/topic");
|
|
|
|
registry.setApplicationDestinationPrefixes("/front");
|
2024-03-01 13:01:35 +08:00
|
|
|
registry.setUserDestinationPrefix("/topic/user");
|
2024-02-21 11:47:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|