package cn.stylefeng.guns.modular.WebSocket;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
@RequestMapping("/websocket")
|
public class WebSocketController {
|
|
|
@GetMapping("/pushone")
|
public void pushone() {
|
WebSocketService.sendMessage("badao","公众号:霸道的程序猿");
|
}
|
}
|