소스 검색

HelloWorld增加createAlarm

menglu 3 년 전
부모
커밋
37cba5b24a
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      src/main/java/com/persagy/controller/HelloWorld.java

+ 9 - 0
src/main/java/com/persagy/controller/HelloWorld.java

@@ -37,6 +37,15 @@ public class HelloWorld {
     AlarmRecordRepository alarmRecordRepository;
     @Autowired
     NettyClient nettyClient;
+    
+    @PostMapping("/createAlarm")
+    public String createAlarm(@RequestBody JSONObject jsonObject) throws Exception {
+        NettyMessage nettyMessage = new NettyMessage(5);
+        nettyMessage.setRemark("连接已经建立;");
+        nettyMessage.setContent(Arrays.asList(jsonObject));
+        nettyClient.sendMessage(nettyMessage);
+        return "hello world!";
+    }
 
     @PostMapping("/")
     public String world(@RequestBody JSONObject jsonObject) throws Exception {