diff --git a/jsowell-netty/src/main/java/com/jsowell/netty/server/yunkuaichong/NettyServerHandler.java b/jsowell-netty/src/main/java/com/jsowell/netty/server/yunkuaichong/NettyServerHandler.java index 61b296e55..f6637a282 100644 --- a/jsowell-netty/src/main/java/com/jsowell/netty/server/yunkuaichong/NettyServerHandler.java +++ b/jsowell-netty/src/main/java/com/jsowell/netty/server/yunkuaichong/NettyServerHandler.java @@ -39,7 +39,7 @@ public class NettyServerHandler extends ChannelInboundHandlerAdapter { */ private static final ConcurrentHashMap CHANNEL_MAP = new ConcurrentHashMap<>(); - private final List notPrintFrameTypeList = Lists.newArrayList(); // "0x03" + private final List notPrintFrameTypeList = Lists.newArrayList("0x03"); // "0x03" /** * 有客户端连接服务器会触发此函数 diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/GuangXiPlatformServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/GuangXiPlatformServiceImpl.java new file mode 100644 index 000000000..12ab17ed3 --- /dev/null +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/GuangXiPlatformServiceImpl.java @@ -0,0 +1,19 @@ +package com.jsowell.thirdparty.platform.service.impl; + +import com.jsowell.thirdparty.platform.service.ThirdPartyPlatformService; +import org.springframework.stereotype.Service; + +/** + * 广西省平台Service + * + * @author Lemon + * @Date 2024/12/23 14:44:32 + */ +@Service +public class GuangXiPlatformServiceImpl implements ThirdPartyPlatformService { + @Override + public void afterPropertiesSet() throws Exception { + + } + +}