提交 | 用户 | 时间 | ||
71e81e | 1 | package cn.stylefeng.guns.modular.WebSocket; |
懒 | 2 | |
3 | import org.springframework.web.bind.annotation.GetMapping; | |
4 | import org.springframework.web.bind.annotation.RequestMapping; | |
5 | import org.springframework.web.bind.annotation.RestController; | |
6 | ||
7 | @RestController | |
8 | @RequestMapping("/websocket") | |
9 | public class WebSocketController { | |
10 | ||
11 | ||
12 | @GetMapping("/pushone") | |
13 | public void pushone() { | |
14 | WebSocketService.sendMessage("badao","公众号:霸道的程序猿"); | |
15 | } | |
16 | } |