
netty
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
Netty, http-message-converter, echo, http request
EchoServer: public class EchoServer { static final boolean SSL = System.getProperty("ssl") != null; static final int PORT = Integer.parseInt(System.getProperty("port", "8007")); publ...2016-09-18 14:18:40 · 127 阅读 · 0 评论 -
Netty
NettyNettyNetty是一个网络通信框架。主要由事件模型、统一通信API、IO读写缓冲区、 Transport、协议支持五个部分组成。 Netty NettyNetty核心组成事件模型统一通信APIIO读写缓冲区Transport协议支持 Netty核心组成Netty核心部分包括事件模型、统一通信A...2016-09-18 18:10:19 · 183 阅读 · 0 评论 -
Hessian远程调用(基于Netty)
public class HessianMethodInvocation implements InvocationHandler, Serializable { private static final long serialVersionUID = 7304512179586775133L; private TestServiceImpl testService;...2017-10-15 15:17:20 · 462 阅读 · 0 评论 -
随便一点代码
public class NioEventLoop_ServerTest { private Selector selector(NioEventLoop eventLoop) throws NoSuchFieldException { Class<?> clazz = eventLoop.getClass(); Field field = null; ...2017-10-29 04:01:48 · 149 阅读 · 0 评论