From d6ff18e0ff89d36e80195da43ca40bf3a8f42b2c Mon Sep 17 00:00:00 2001 From: Administrator <pjb> Date: 星期日, 15 六月 2025 09:38:14 +0800 Subject: [PATCH] wms分配库位异常 --- src/main/java/com/zy/core/netty/OnlineServer.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/zy/core/netty/OnlineServer.java b/src/main/java/com/zy/core/netty/OnlineServer.java index f6e68ec..5450a1f 100644 --- a/src/main/java/com/zy/core/netty/OnlineServer.java +++ b/src/main/java/com/zy/core/netty/OnlineServer.java @@ -33,18 +33,18 @@ private EventLoopGroup bossGroup; private EventLoopGroup workerGroup; - @Autowired - public OnlineServer(TcpProperties tcpProperties, HandlerInitializer handlerInitializer) { ; - this.tcpProperties = tcpProperties; - this.handlerInitializer = handlerInitializer; - } - { bootstrap = new ServerBootstrap(); bossGroup = new NioEventLoopGroup(1); workerGroup = new NioEventLoopGroup(); } + @Autowired + public OnlineServer(TcpProperties tcpProperties, HandlerInitializer handlerInitializer) { + ; + this.tcpProperties = tcpProperties; + this.handlerInitializer = handlerInitializer; + } /** * tcp server init -- Gitblit v1.9.1