Skip to content

Instantly share code, notes, and snippets.

@navichok26
Created May 31, 2020 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navichok26/75486c57a7be01d99d10f3c726dc1488 to your computer and use it in GitHub Desktop.
Save navichok26/75486c57a7be01d99d10f3c726dc1488 to your computer and use it in GitHub Desktop.
WebSocket Controller
@Controller
public class ChatController {
@MessageMapping("/chat.sendMessage")
@SendTo("/topic/public")
public ChatMessage sendMessage(@Payload ChatMessage chatMessage) {
return chatMessage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment