我正在使用Stomp over SockJS和Spring消息传递。我正在尝试在连接新用户时向所有登录用户发送消息。首先,这是我的听众:
@Component
public class SessionConnectedListener implements ApplicationListener<SessionConnectedEvent> {
private static final Logger log = LoggerFactory.getLogger(SessionConnectedListener.class);
@Autowired
private SimpMessagingTemplate template;
@Override
public void onApplicationEvent(SessionConnectedEvent event) {
log.info(event.toString());
// Not sure if it's sending...?
template.convertAndSend("/topic/login", "New user logged in");
}
}
我的WebSocket配置
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("chat").withSockJS();
}
@Override
public void configureMessageBroker(MessageBrokerRegistry config) {
config.enableSimpleBroker("/topic", "/queue");
config.setApplicationDestinationPrefixes("/app");
}
}
我的JS配置
var socket = new SockJS('/chat');
stompClient = Stomp.over(socket);
stompClient.connect({}}, function(frame) {
// ... other working subscriptions
stompClient.subscribe("/topic/login", function(message) {
console.log(message.body);
});
});
我的问题是我的 template.convertAndSend()在 ApplicationListener 中不起作用。但是,如果我将它放在用@MessageMapping注释的Controller方法中,它将起作用,我将有一个控制台日志客户端。
所以我的问题是: template.convertAndSend()可以在 ApplicationListener 中使用吗?如果是这样,怎么样?或者我错过了什么?
感谢您的帮助!
PS:我的 log.info(event.toString());在ApplicationListener 中工作,所以我知道我正在进入onApplicationEvent()方法。
答案 0 :(得分:0)
使用ApplicationListener
内的模板发送消息应该有效。请查看此Spring WebSocket Chat示例以获取示例。
答案 1 :(得分:0)
确定!可能很奇怪,我在下面的包中使用了Listener:
package my.company.listener;
但由于我在App环境中的配置, convertAndSend()方法无效。
@ComponentScan(basePackages = { "my.company" }, excludeFilters = @ComponentScan.Filter(type = FilterType.REGEX, pattern = { "my.company.web.*" }))
然而,当我将我的Listener(使用@Component注释)移动到 web 子包时,它工作正常!
package my.company.web.listener;