阅读(3788) (0)

Netty4 下载

2020-10-19 14:56:50 更新

Netty4 下载地址

Netty 根据 Apache许可证v2.0 分发。有关更多信息,请参见附件NOTICE.txt

注意

Netty没有强制性的外部依赖关系。运行 Netty 只需 JDK 1.5(Netty 4+,则需要 JDK 1.6)或更高版本。


从 Maven 中央存储库下载

将以下依赖项部分添加到 pom.xml 中:

<dependencies>
  ...
  <dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty</artifactId> <!-- 4.0 或更高版本请使用 'netty-all' -->
    <version>X.Y.Z.Q</version>
    <scope>compile</scope>
  </dependency>
  ...
</dependencies>