mirror of
https://gitee.com/yudaocode/SpringBoot-Labs.git
synced 2026-09-03 05:53:54 +08:00
Netty 入门示例 - 增加业务逻辑
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispacher;
|
||||
|
||||
public interface Message {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispatcher;
|
||||
|
||||
/**
|
||||
* 消息接口
|
||||
*/
|
||||
public interface Message {
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispacher;
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispatcher;
|
||||
|
||||
import cn.iocoder.springboot.lab67.nettycommondemo.codec.Invocation;
|
||||
import com.alibaba.fastjson.JSON;
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispacher;
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispatcher;
|
||||
|
||||
import io.netty.channel.Channel;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispacher;
|
||||
package cn.iocoder.springboot.lab67.nettycommondemo.dispatcher;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
Reference in New Issue
Block a user