dobbo QOS 端口占用问题

QoS参数可以通过如下方式进行配置

系统属性

-Ddubbo.application.qos.enable=true

-Ddubbo.application.qos.port=33333

-Ddubbo.application.qos.accept.foreign.ip=false

dubbo.properties

dubbo.application.qos.enable=true

dubbo.application.qos.port=33333

dubbo.application.qos.accept.foreign.ip=false

XML方式

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://dubbo.apache.org/schema/dubbo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://dubbo.apache.org/schema/dubbo/dubbo.xsd"> <dubbo:application name="demo-provider"> <dubbo:parameter key="qos.enable" value="true"/> <dubbo:parameter key="qos.accept.foreign.ip" value="false"/> <dubbo:parameter key="qos.port" value="33333"/> </dubbo:application> <dubbo:registry address="multicast://224.5.6.7:1234"/> <dubbo:protocol name="dubbo" port="20880"/> <dubbo:service interface="org.apache.dubbo.demo.provider.DemoService" ref="demoService"/> <bean id="demoService" class="org.apache.dubbo.demo.provider.DemoServiceImpl"/> </beans>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyzfjd.html