You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2021/07/12 08:29:23 UTC

[GitHub] [dubbo] changwei0708 commented on issue #8273: Upgrade Dubbo from 2.7.11 to 3.0.1 get RuntimeException: [source error] getExportedURLs() not found in org.apache.dubbo.registry.client.metadata.store.InMemoryWritableMetadataService

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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org