From 330d4b3a9964df847cfc2080fe31eddb243e455a Mon Sep 17 00:00:00 2001 From: Lemon Date: Tue, 24 Dec 2024 10:32:09 +0800 Subject: [PATCH] =?UTF-8?q?update=20=20=E5=BF=83=E8=B7=B3=E5=8C=85?= =?UTF-8?q?=E4=B8=8D=E5=86=8D=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yunkuaichong/NettyServerHandler.java | 2 +- .../impl/GuangXiPlatformServiceImpl.java | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/GuangXiPlatformServiceImpl.java 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 { + + } + +}