併發控制就是限制佔用的線程池線程數。html
(1)服務端併發執行(或佔用線程池線程數)不能超過10個。java
<dubbo:service interface="com.foo.BarService" executes="10" />
(2)限制到方法併發
<dubbo:service interface="com.foo.BarService"> <dubbo:method name="sayHello" executes="10" /> </dubbo:service>
(3)佔用鏈接的請求的數不能超過10個負載均衡
<dubbo:service interface="com.foo.BarService" actives="10" />
XML 配置文件方式ide
properties 配置文件方式.net
annotation 配置方式線程
API 配置方式code