io.netty.channel.ChannelOption.TCP_FASTOPEN_CONNECT 是属于哪个依赖包
时间: 2023-12-21 11:07:10 浏览: 175
io.netty.channel.ChannelOption.TCP_FASTOPEN_CONNECT 属于 Netty 库的一部分。它是在 Netty 4.1.17 版本中引入的,因此您需要使用至少这个版本或更高版本的 Netty 来使用它。
您可以将以下 Maven 依赖添加到您的项目中来使用它:
```xml
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.17.Final</version>
</dependency>
```
或者 Gradle 依赖:
```gradle
dependencies {
implementation 'io.netty:netty-all:4.1.17.Final'
}
```
请注意,您可能需要调整版本号以匹配您的项目依赖关系。
相关问题
io.netty.channel.ChannelOption 是属于哪个依赖包
io.netty.channel.ChannelOption 是属于 Netty 库的一部分,您需要在您的项目中添加以下 Maven 依赖来使用它:
```xml
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.53.Final</version>
</dependency>
```
或者 Gradle 依赖:
```gradle
dependencies {
implementation 'io.netty:netty-all:4.1.53.Final'
}
```
请注意,您可能需要调整版本号以匹配您的项目依赖关系。
阅读全文