cl
2024-01-16 cf6bff3922bbd0624b98834f6ea85c8e619e564f
提交 | 用户 | 时间
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 }