Netty入门

1、下载Netty包
http://netty.io/

2、参考文档
http://my.oschina.net/flashsword/blog/162936?p=2

3、目前工程使用
<dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty</artifactId>
        <version>3.6.5.Final</version>
      </dependency>


测试使用
<dependency>
  <groupId>io.netty</groupId>
  <artifactId>netty-all</artifactId>
  <version>5.0.0.Alpha1</version>
</dependency>

你可能感兴趣的:(netty)