xiaoyong931011
2021-05-26 a0da4723b75c2bb13d2b4bef8fed196c678ddcde
src/main/java/com/xcong/excoin/netty/dispatch/MsgDispatch.java
@@ -27,10 +27,9 @@
    private MsgLogic msgLogic;
    public void webSocketDispatch(ChannelHandlerContext ctx, String msg) {
        log.info("==========={}", msg);
        RequestBean requestBean = null;
        try {
            requestBean = JSONObject.parseObject(msg, RequestBean.class);
            requestBean.setChannelId(ctx.channel().id().asShortText());
            msgLogic.webSocketMsgLogic(requestBean);
        } catch (Exception e) {
            log.info("#websocket json error:{}#", e);