文档请看,http://dubbo.apache.org/zh-cn/docs/user/references/qos.html
由 QosProtocolWrapper 处理
<!-- qos server依赖 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.30.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8</version>
</dependency>
关闭qos
ApplicationConfig appConfig =new ApplicationConfig();
appConfig.setQosEnable(false);
dubbo2.6.4默认用的netty 3.2.5.Final,可是内置的 qos-server需要netty4,暂时不理解
网友评论