|
@@ -144,13 +144,14 @@ public class CallBackController {
|
|
|
|
|
|
@GetMapping("/showWs")
|
|
|
@ResponseBody
|
|
|
- public boolean showWs(String code){
|
|
|
+ public String showWs(String code){
|
|
|
+ String s = "";
|
|
|
try {
|
|
|
-
|
|
|
+ s = new WebSocketController().showWs(code);
|
|
|
} catch (Exception e) {
|
|
|
if(e.toString().length()>500){ LOG.error(e.toString().substring(0,450)); }else { LOG.error(e.toString()); }
|
|
|
}
|
|
|
- return true;
|
|
|
+ return s;
|
|
|
}
|
|
|
|
|
|
|