changwei0708 commented on issue #8273:
URL: https://github.com/apache/dubbo/issues/8273#issuecomment-878081581


   and the dubbo service provider config xml is 
   
   ```
   <?xml version="1.0" encoding="UTF-8"?>
   <!-- - Copyright 1999-2011 Alibaba Group. - - Licensed under the Apache 
License, 
        Version 2.0 (the "License"); - you may not use this file except in 
compliance 
        with the License. - You may obtain a copy of the License at - - 
http://www.apache.org/licenses/LICENSE-2.0 
        - - Unless required by applicable law or agreed to in writing, software 
- 
        distributed under the License is distributed on an "AS IS" BASIS, - 
WITHOUT 
        WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See 
the 
        License for the specific language governing permissions and - 
limitations 
        under the License. -->
   <beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo";
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://code.alibabatech.com/schema/dubbo 
http://code.alibabatech.com/schema/dubbo/dubbo.xsd";>
        
        <dubbo:application name="platform-service" owner="${dubbo.owner}" 
organization="${dubbo.organization}"/>
        
        <dubbo:registry id="registry1" 
address="zookeeper://192.168.1.11:2181?registry-type=service" check="false"/>
        <dubbo:config-center address="zookeeper://192.168.1.11:2181"/>
        <dubbo:metadata-report address="zookeeper://192.168.1.11:2181"/>
        
        <dubbo:provider timeout="${dubbo.service.timeout}" 
version="${dubbo.service.version}" registry="registry1" protocol="dubbo" 
export="true" />
        <dubbo:consumer timeout="${dubbo.service.timeout}" 
version="${dubbo.service.version}" registry="registry1" retries="0" 
check="false"/>
   
        <dubbo:monitor protocol="${platform.dubbo.monitor}"/>
        
        <dubbo:protocol name="dubbo" serialization="kryo" host="${dubbo.host}" 
port="${dubbo.port}" payload="104857600" />
   
        <dubbo:service protocol="dubbo" export="true" delay="5000" 
registry="registry1" interface="com.platform.workbench.spi.IWorkbenchService" 
ref="workbenchServiceImpl" />
        <dubbo:service protocol="dubbo" export="true" delay="5000" 
registry="registry1" 
interface="com.platform.workbench.spi.IWorkbenchAdminService" 
ref="workbenchServiceAdminImpl" />
        
   </beans>
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to