如何发表&在Spring

时间:2015-07-12 07:12:51

标签: java spring messaging stomp

我正在尝试从一个类发布并使用简单的消息传递代理从另一个类订阅。下面是我想要做的示例代码。

@Scheduled(fixedDelay=1500) public void Hello() {
    this.messagingTemplate.convertAndSend("/topic/hello",new String("Hello"));  
}

@MessageMapping("/topic/hello") public void HelloWorld(String greet) {
    System.out.println(greet);  
}

0 个答案:

没有答案