Ho implementato Web Socket utilizzando Spring MVC e funziona correttamente per me lavoro da un browser a un altro browser che è aperto per quei socket che utilizzano questo codice.Come chiamare @SendTo dalla richiesta di chiamata normale i.e @RequestMapping
@MessageMapping("/hello")
@SendTo("/topic/greetings")
public HelloMessage greeting(HelloMessage message) throws Exception {
Thread.sleep(3000); // simulated delay
return message;
}
Può uno aiutarmi per chi chiamare @SendTo ("/ topic/saluti") dai normali controller.I API hanno provare a utilizzare questo, ma non funziona per me
@RequestMapping(value = "/sendMessage")
@SendTo("/topic/greetings")
public HelloMessage sendMessage() throws Exception {
return new HelloMessage((int) Math.random(), "This is Send From Server");
}
qualche idea per questo?
Grazie