Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dubbo 消费者 ConsumerApplication 启动报错求助 #521

Open
Sod-Momas opened this issue Sep 18, 2022 · 2 comments
Open

dubbo 消费者 ConsumerApplication 启动报错求助 #521

Sod-Momas opened this issue Sep 18, 2022 · 2 comments

Comments

@Sod-Momas
Copy link

我照着例子抄了一份消费者,一直启动不起来,希望有人提供一下帮助,哪怕帮我指出错误

代码照着 https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-spring-boot/dubbo-samples-spring-boot-consumer/src/main/java/org/apache/dubbo/springboot/demo/consumer/ConsumerApplication.java 这个文件抄的,当然provider和consumer的依赖、配置也都已经照着抄过来了

具体内容就是

import cc.momas.dubbo.api.AccountService;
import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.stereotype.Service;

@SpringBootApplication
@Service
@EnableDubbo
public class ConsumerApplication {
    @DubboReference
    private AccountService demoService;

    public static void main(String[] args) {

        ConfigurableApplicationContext context = SpringApplication.run(ConsumerApplication.class, args);
        ConsumerApplication application = context.getBean(ConsumerApplication.class);
        String result = application.doSayHello("world");
        System.out.println("result: " + result);
    }

    public String doSayHello(String name) {
        return demoService.sayHello(name);
    }
}

如果还需要更多信息的请,我的代码在 https://github.com/Sod-Momas/playground/tree/master/playground-apache-dubbo 这里

@Sod-Momas
Copy link
Author

这是启动后的错误日志:

[18/09/22 18:57:22:073 CST] main  INFO event.WelcomeLogoApplicationListener: 

 :: Dubbo Spring Boot (v3.0.7) : https://github.com/apache/dubbo-spring-boot-project
 :: Dubbo (v3.0.7) : https://github.com/apache/dubbo
 :: Discuss group : dev@dubbo.apache.org


  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.3.1.RELEASE)

[18/09/22 18:57:22:160 CST] main  INFO consumer.ConsumerApplication: Starting ConsumerApplication on BOOKX with PID 10212 (C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-consumer\target\classes started by sod in C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo)
[18/09/22 18:57:22:160 CST] main  INFO consumer.ConsumerApplication: No active profile set, falling back to default profiles: default
[18/09/22 18:57:23:204 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default framework from null to Dubbo Framework[1], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:204 CST] main  INFO model.FrameworkModel:  [DUBBO] Dubbo Framework[1] is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:245 CST] main  INFO model.ApplicationModel:  [DUBBO] Dubbo Application[1.0](unknown) is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:246 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.0.0] is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:274 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:274 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:345 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default application from null to Dubbo Application[1.1](unknown), dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:345 CST] main  INFO model.ApplicationModel:  [DUBBO] Dubbo Application[1.1](unknown) is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:345 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.1.0] is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:350 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:351 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:355 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Use default application: Dubbo Application[1.1](unknown), dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:355 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.1.1] is created, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:357 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:359 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Use default module model of target application: Dubbo Module[1.1.1], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:359 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Bind Dubbo Module[1.1.1] to spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@1990a0c, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:416 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:416 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:418 CST] main  WARN annotation.ServiceAnnotationPostProcessor:  [DUBBO] No class annotated by Dubbo @Service was found under package [cc.momas.dubbo.consumer], ignore re-scanned classes: 0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:23:513 CST] main  INFO annotation.ReferenceAnnotationBeanPostProcessor: Register dubbo reference bean: demoService = ReferenceBean:cc.momas.dubbo.api.AccountService() at private cc.momas.dubbo.api.AccountService cc.momas.dubbo.consumer.ConsumerApplication.demoService
[18/09/22 18:57:23:546 CST] main  INFO annotation.ReferenceAnnotationBeanPostProcessor: class org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor was destroying!
[18/09/22 18:57:23:608 CST] main  INFO context.DubboConfigBeanInitializer: loading dubbo config beans ...
[18/09/22 18:57:23:647 CST] main  INFO context.DubboConfigBeanInitializer: dubbo config beans are loaded.
[18/09/22 18:57:23:724 CST] main  INFO utils.Compatibility: Running in ZooKeeper 3.4.x compatibility mode
[18/09/22 18:57:23:724 CST] main  INFO utils.Compatibility: Using emulated InjectSessionExpiration
[18/09/22 18:57:23:748 CST] main  INFO imps.CuratorFrameworkImpl: Starting
[18/09/22 18:57:23:753 CST] main  INFO zookeeper.ZooKeeper: Client environment:zookeeper.version=3.4.14-4c25d480e66aadd371de8bd2fd8da255ac140bcf, built on 03/06/2019 16:18 GMT
[18/09/22 18:57:23:753 CST] main  INFO zookeeper.ZooKeeper: Client environment:host.name=BOOKX.mshome.net
[18/09/22 18:57:23:753 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.version=1.8.0_202
[18/09/22 18:57:23:753 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.vendor=Oracle Corporation
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.home=C:\Program Files (x86)\Java\jdk1.8.0_202\jre
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.class.path=C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-32.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files (x86)\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-consumer\target\classes;C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-model\target\classes;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo\3.0.7\dubbo-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\spring-context\5.2.7.RELEASE\spring-context-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-aop\5.2.7.RELEASE\spring-aop-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-beans\5.2.7.RELEASE\spring-beans-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-expression\5.2.7.RELEASE\spring-expression-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\sod\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\sod\.m2\repository\io\netty\netty-all\4.1.50.Final\netty-all-4.1.50.Final.jar;C:\Users\sod\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar;C:\Users\sod\.m2\repository\org\yaml\snakeyaml\1.26\snakeyaml-1.26.jar;C:\Users\sod\.m2\repository\com\alibaba\fastjson\1.2.70\fastjson-1.2.70.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-x-discovery\4.2.0\curator-x-discovery-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-recipes\4.2.0\curator-recipes-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-framework\4.2.0\curator-framework-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-client\4.2.0\curator-client-4.2.0.jar;C:\Users\sod\.m2\repository\com\google\guava\guava\27.0.1-jre\guava-27.0.1-jre.jar;C:\Users\sod\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\sod\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\sod\.m2\repository\org\checkerframework\checker-qual\2.5.2\checker-qual-2.5.2.jar;C:\Users\sod\.m2\repository\com\google\errorprone\error_prone_annotations\2.2.0\error_prone_annotations-2.2.0.jar;C:\Users\sod\.m2\repository\com\google\j2objc\j2objc-annotations\1.1\j2objc-annotations-1.1.jar;C:\Users\sod\.m2\repository\org\codehaus\mojo\animal-sniffer-annotations\1.17\animal-sniffer-annotations-1.17.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.11.0\jackson-databind-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.0\jackson-annotations-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.11.0\jackson-core-2.11.0.jar;C:\Users\sod\.m2\repository\org\apache\zookeeper\zookeeper\3.4.14\zookeeper-3.4.14.jar;C:\Users\sod\.m2\repository\com\github\spotbugs\spotbugs-annotations\3.1.9\spotbugs-annotations-3.1.9.jar;C:\Users\sod\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\sod\.m2\repository\jline\jline\0.9.94\jline-0.9.94.jar;C:\Users\sod\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.7\dubbo-spring-boot-starter-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.7\dubbo-spring-boot-autoconfigure-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.7\dubbo-spring-boot-autoconfigure-compatible-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter\2.3.1.RELEASE\spring-boot-starter-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot\2.3.1.RELEASE\spring-boot-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.3.1.RELEASE\spring-boot-starter-logging-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;C:\Users\sod\.m2\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;C:\Users\sod\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\sod\.m2\repository\org\springframework\spring-core\5.2.7.RELEASE\spring-core-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-jcl\5.2.7.RELEASE\spring-jcl-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.3.1.RELEASE\spring-boot-autoconfigure-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-log4j12\1.7.25\slf4j-log4j12-1.7.25.jar;C:\Users\sod\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar;C:\Users\sod\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-0\222.4167.29\lib\idea_rt.jar
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.library.path=C:\Program Files (x86)\Java\jdk1.8.0_202\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files (x86)\NetSarang\Xshell 7\;C:\Program Files (x86)\NetSarang\Xftp 7\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Users\sod\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\sod\AppData\Local\Microsoft\WindowsApps;C:\Users\sod\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Programs\apache-maven-3.8.1\bin;C:\Program Files (x86)\LLVM\bin;C:\Program Files\MySQL\MySQL Workbench 8.0;C:\Users\sod\.dotnet\tools;C:\Programs\jdk-17.0.2\bin;C:\Users\sod\AppData\Local\JetBrains\Toolbox\scripts;.
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.io.tmpdir=C:\Users\sod\AppData\Local\Temp\
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.compiler=<NA>
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.name=Windows 10
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.arch=x86
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.version=10.0
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.name=sod
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.home=C:\Users\sod
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.dir=C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo
[18/09/22 18:57:23:754 CST] main  INFO zookeeper.ZooKeeper: Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@417a16
[18/09/22 18:57:24:190 CST] main  INFO imps.CuratorFrameworkImpl: Default schema
[18/09/22 18:57:24:191 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Opening socket connection to server kubernetes.docker.internal/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
[18/09/22 18:57:24:192 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Socket connection established to kubernetes.docker.internal/127.0.0.1:2181, initiating session
[18/09/22 18:57:24:197 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Session establishment complete on server kubernetes.docker.internal/127.0.0.1:2181, sessionid = 0x100046e0ba00004, negotiated timeout = 60000
[18/09/22 18:57:24:202 CST] main-EventThread  INFO state.ConnectionStateManager: State change: CONNECTED
[18/09/22 18:57:24:202 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] No valid zookeeper client found from cache, therefore create a new client for url. zookeeper://127.0.0.1:2181/org.apache.dubbo.config.ConfigCenterConfig?check=true&config-file=dubbo.properties&group=dubbo&include.spring.env=false&namespace=dubbo&timeout=30000, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:207 CST] Curator-ConnectionStateManager-0  INFO curator.CuratorZookeeperClient:  [DUBBO] Curator zookeeper client instance initiated successfully, session id is 100046e0ba00004, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:221 CST] main  WARN config.ConfigurationUtils:  [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:222 CST] main  WARN config.ConfigurationUtils:  [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:272 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] has been initialized!, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:277 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] has been initialized!, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:390 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] find valid zookeeper client from the cache for address: zookeeper://127.0.0.1:2181/org.apache.dubbo.metadata.report.MetadataReport?application=playground-apache-dubbo-consumer&port=2181&protocol=zookeeper, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:390 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-consumer) has been initialized!, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:472 CST] main  INFO reference.ReferenceCreator: The configBean[type:ReferenceConfig] has been built.
[18/09/22 18:57:24:610 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] is starting., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:611 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-consumer) is starting., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:611 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] is starting., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:611 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] has started., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:632 CST] main  INFO cache.FileCacheStoreFactory:  [DUBBO] Failed to create file store cache. Local file cache will be disabled. Cache file name: C:\Users\sod\.dubbo\.mapping.dubbo.cache, dubbo version: 3.0.7, current host: 192.168.0.8
org.apache.dubbo.common.cache.FileCacheStoreFactory$PathNotExclusiveException: C:\Users\sod\.dubbo\.mapping.dubbo.cache is not exclusive.
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.tryFileLock(FileCacheStoreFactory.java:149)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.getFile(FileCacheStoreFactory.java:115)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.lambda$getInstance$0(FileCacheStoreFactory.java:82)
	at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.getInstance(FileCacheStoreFactory.java:82)
	at org.apache.dubbo.metadata.AbstractCacheManager.init(AbstractCacheManager.java:47)
	at org.apache.dubbo.metadata.MappingCacheManager.<init>(MappingCacheManager.java:62)
	at org.apache.dubbo.metadata.AbstractServiceNameMapping.<init>(AbstractServiceNameMapping.java:63)
	at org.apache.dubbo.registry.client.metadata.MetadataServiceNameMapping.<init>(MetadataServiceNameMapping.java:51)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
	at org.apache.dubbo.common.beans.support.InstantiationStrategy.instantiate(InstantiationStrategy.java:93)
	at org.apache.dubbo.common.extension.ExtensionLoader.createExtensionInstance(ExtensionLoader.java:798)
	at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:759)
	at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:548)
	at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:523)
	at org.apache.dubbo.common.extension.ExtensionLoader.getDefaultExtension(ExtensionLoader.java:574)
	at org.apache.dubbo.common.extension.ExtensionAccessor.getDefaultExtension(ExtensionAccessor.java:42)
	at org.apache.dubbo.metadata.ServiceNameMapping.getDefaultExtension(ServiceNameMapping.java:57)
	at org.apache.dubbo.config.ReferenceConfig.initServiceAppsMapping(ReferenceConfig.java:297)
	at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:268)
	at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:219)
	at org.apache.dubbo.config.utils.SimpleReferenceCache.get(SimpleReferenceCache.java:110)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.lambda$referServices$6(DefaultModuleDeployer.java:387)
	at java.util.concurrent.ConcurrentHashMap$ValuesView.forEach(ConcurrentHashMap.java:4707)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.referServices(DefaultModuleDeployer.java:367)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.start(DefaultModuleDeployer.java:154)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onContextRefreshedEvent(DubboDeployApplicationListener.java:111)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:100)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:45)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:404)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:361)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:898)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:554)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
	at cc.momas.dubbo.consumer.ConsumerApplication.main(ConsumerApplication.java:24)
[18/09/22 18:57:24:634 CST] main  INFO metadata.MappingCacheManager:  [DUBBO] Successfully loaded mapping cache from file .mapping, entries 0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:641 CST] main  INFO protocol.QosProtocolWrapper:  [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:656 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] find valid zookeeper client from the cache for address: zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=zk-registry&application=playground-apache-dubbo-consumer&dubbo=2.0.2&file.cache=false&interface=org.apache.dubbo.registry.RegistryService&pid=10212&qos.enable=false&release=3.0.7, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:671 CST] main  INFO migration.MigrationRuleListener:  [DUBBO] Listening for migration rules on dataId playground-apache-dubbo-consumer.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:734 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Subscribe: consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&category=providers,configurators,routers&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:748 CST] main  WARN support.CacheableFailbackRegistry:  [DUBBO] Invalid address, failed to parse into URL dubbo%3A%2F%2F192.168.0.8%3A2200%2Fcc.momas.dubbo.api.AccountService%3Fanyhost%3Dtrue%26application%3Dplayground-apache-dubbo-provider%26background%3Dfalse%26deprecated%3Dfalse%26dubbo%3D2.0.2%26dynamic%3Dtrue%26file.cache%3Dfalse%26generic%3Dfalse%26interface%3Dcc.momas.dubbo.api.AccountService%26methods%3DsayHello%2CloginByNamePwd%2CsayHelloAsync%26release%3D3.0.7%26revision%3D1.0.0%26service-name-mapping%3Dtrue%26side%3Dprovider%26version%3D1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:750 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Notify urls for subscribe url consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&category=providers,configurators,routers&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620, url size: 2, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:768 CST] main  WARN integration.RegistryDirectory:  [DUBBO] Servicecc.momas.dubbo.api.AccountService received empty address list with no EMPTY protocol set, trigger empty protection., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:803 CST] main  INFO cache.FileCacheStoreFactory:  [DUBBO] Failed to create file store cache. Local file cache will be disabled. Cache file name: C:\Users\sod\.dubbo\.metadata.zookeeper127.0.0.1%003a2181.dubbo.cache, dubbo version: 3.0.7, current host: 192.168.0.8
org.apache.dubbo.common.cache.FileCacheStoreFactory$PathNotExclusiveException: C:\Users\sod\.dubbo\.metadata.zookeeper127.0.0.1%003a2181.dubbo.cache is not exclusive.
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.tryFileLock(FileCacheStoreFactory.java:149)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.getFile(FileCacheStoreFactory.java:115)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.lambda$getInstance$0(FileCacheStoreFactory.java:82)
	at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660)
	at org.apache.dubbo.common.cache.FileCacheStoreFactory.getInstance(FileCacheStoreFactory.java:82)
	at org.apache.dubbo.metadata.AbstractCacheManager.init(AbstractCacheManager.java:47)
	at org.apache.dubbo.registry.client.metadata.store.MetaCacheManager.<init>(MetaCacheManager.java:59)
	at org.apache.dubbo.registry.client.AbstractServiceDiscovery.<init>(AbstractServiceDiscovery.java:85)
	at org.apache.dubbo.registry.client.AbstractServiceDiscovery.<init>(AbstractServiceDiscovery.java:66)
	at org.apache.dubbo.registry.zookeeper.ZookeeperServiceDiscovery.<init>(ZookeeperServiceDiscovery.java:70)
	at org.apache.dubbo.registry.zookeeper.ZookeeperServiceDiscoveryFactory.createDiscovery(ZookeeperServiceDiscoveryFactory.java:27)
	at org.apache.dubbo.registry.client.AbstractServiceDiscoveryFactory.lambda$getServiceDiscovery$0(AbstractServiceDiscoveryFactory.java:53)
	at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660)
	at org.apache.dubbo.registry.client.AbstractServiceDiscoveryFactory.getServiceDiscovery(AbstractServiceDiscoveryFactory.java:53)
	at org.apache.dubbo.registry.client.ServiceDiscoveryRegistry.getServiceDiscovery(ServiceDiscoveryRegistry.java:122)
	at org.apache.dubbo.registry.client.ServiceDiscoveryRegistry.createServiceDiscovery(ServiceDiscoveryRegistry.java:109)
	at org.apache.dubbo.registry.client.ServiceDiscoveryRegistry.<init>(ServiceDiscoveryRegistry.java:86)
	at org.apache.dubbo.registry.client.ServiceDiscoveryRegistryFactory.createRegistry(ServiceDiscoveryRegistryFactory.java:35)
	at org.apache.dubbo.registry.support.AbstractRegistryFactory.getRegistry(AbstractRegistryFactory.java:89)
	at org.apache.dubbo.registry.RegistryFactoryWrapper.getRegistry(RegistryFactoryWrapper.java:33)
	at org.apache.dubbo.registry.RegistryFactory$Adaptive.getRegistry(RegistryFactory$Adaptive.java)
	at org.apache.dubbo.registry.integration.RegistryProtocol.getRegistry(RegistryProtocol.java:393)
	at org.apache.dubbo.registry.integration.InterfaceCompatibleRegistryProtocol.getServiceDiscoveryInvoker(InterfaceCompatibleRegistryProtocol.java:63)
	at org.apache.dubbo.registry.client.migration.MigrationInvoker.refreshServiceDiscoveryInvoker(MigrationInvoker.java:428)
	at org.apache.dubbo.registry.client.migration.MigrationInvoker.migrateToApplicationFirstInvoker(MigrationInvoker.java:244)
	at org.apache.dubbo.registry.client.migration.MigrationRuleHandler.refreshInvoker(MigrationRuleHandler.java:73)
	at org.apache.dubbo.registry.client.migration.MigrationRuleHandler.doMigrate(MigrationRuleHandler.java:57)
	at org.apache.dubbo.registry.client.migration.MigrationRuleListener.onRefer(MigrationRuleListener.java:243)
	at org.apache.dubbo.registry.integration.RegistryProtocol.interceptInvoker(RegistryProtocol.java:535)
	at org.apache.dubbo.registry.integration.RegistryProtocol.doRefer(RegistryProtocol.java:505)
	at org.apache.dubbo.registry.integration.RegistryProtocol.refer(RegistryProtocol.java:487)
	at org.apache.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:83)
	at org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:74)
	at org.apache.dubbo.rpc.cluster.filter.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:71)
	at org.apache.dubbo.rpc.protocol.ProtocolSerializationWrapper.refer(ProtocolSerializationWrapper.java:52)
	at org.apache.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
	at org.apache.dubbo.config.ReferenceConfig.createInvokerForRemote(ReferenceConfig.java:494)
	at org.apache.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:397)
	at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:285)
	at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:219)
	at org.apache.dubbo.config.utils.SimpleReferenceCache.get(SimpleReferenceCache.java:110)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.lambda$referServices$6(DefaultModuleDeployer.java:387)
	at java.util.concurrent.ConcurrentHashMap$ValuesView.forEach(ConcurrentHashMap.java:4707)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.referServices(DefaultModuleDeployer.java:367)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.start(DefaultModuleDeployer.java:154)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onContextRefreshedEvent(DubboDeployApplicationListener.java:111)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:100)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:45)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:404)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:361)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:898)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:554)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
	at cc.momas.dubbo.consumer.ConsumerApplication.main(ConsumerApplication.java:24)
[18/09/22 18:57:24:804 CST] main  INFO store.MetaCacheManager:  [DUBBO] Successfully loaded mapping cache from file .metadata.zookeeper127.0.0.1:2181, entries 0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:806 CST] main  INFO imps.CuratorFrameworkImpl: Starting
[18/09/22 18:57:24:807 CST] main  INFO zookeeper.ZooKeeper: Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@1e39850
[18/09/22 18:57:24:808 CST] main  INFO imps.CuratorFrameworkImpl: Default schema
[18/09/22 18:57:24:808 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Opening socket connection to server kubernetes.docker.internal/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
[18/09/22 18:57:24:809 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Socket connection established to kubernetes.docker.internal/127.0.0.1:2181, initiating session
[18/09/22 18:57:24:811 CST] main-SendThread(kubernetes.docker.internal:2181)  INFO zookeeper.ClientCnxn: Session establishment complete on server kubernetes.docker.internal/127.0.0.1:2181, sessionid = 0x100046e0ba00005, negotiated timeout = 60000
[18/09/22 18:57:24:812 CST] main-EventThread  INFO state.ConnectionStateManager: State change: CONNECTED
[18/09/22 18:57:24:927 CST] main  INFO metadata.MetadataServiceNameMapping:  [DUBBO] Local cache mapping is empty, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:966 CST] main  INFO client.ServiceDiscoveryRegistry:  [DUBBO] Trying to subscribe from apps playground-apache-dubbo-provider for service key cc.momas.dubbo.api.AccountService, , dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:968 CST] main-EventThread  INFO client.ServiceDiscoveryRegistry$DefaultMappingListener:  [DUBBO] Received mapping notification from meta server, {serviceKey: cc.momas.dubbo.api.AccountService, apps: [playground-apache-dubbo-provider]}, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:24:968 CST] main-EventThread  INFO client.ServiceDiscoveryRegistry$DefaultMappingListener:  [DUBBO] Mapping of service cc.momas.dubbo.api.AccountServicechanged from null to [playground-apache-dubbo-provider], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:25:052 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] Received instance notification, serviceName: playground-apache-dubbo-provider, instances: 1, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:038 CST] NettyClientWorker-1-1  INFO netty4.NettyClientHandler:  [DUBBO] The connection of /192.168.0.8:12089 -> /192.168.0.8:2200 is established., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:043 CST] main  INFO transport.AbstractClient:  [DUBBO] Successfully connect to server /192.168.0.8:2200 from NettyClient 192.168.0.8 using dubbo version 3.0.7, channel is NettyChannel [channel=[id: 0x0f75db07, L:/192.168.0.8:12089 - R:/192.168.0.8:2200]], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:043 CST] main  INFO transport.AbstractClient:  [DUBBO] Start NettyClient /192.168.0.8 connect to the server /192.168.0.8:2200, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:139 CST] main  INFO netty4.NettyChannel:  [DUBBO] Close netty channel [id: 0x0f75db07, L:/192.168.0.8:12089 - R:/192.168.0.8:2200], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:140 CST] NettyClientWorker-1-1  INFO netty4.NettyClientHandler:  [DUBBO] The connection of /192.168.0.8:12089 -> /192.168.0.8:2200 is disconnected., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:140 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] 1 unique working revisions: 69ffc4226e55af4dd322edbb011ad074 , dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:203 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] Received instance notification, serviceName: playground-apache-dubbo-provider, instances: 1, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:203 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] 1 unique working revisions: 69ffc4226e55af4dd322edbb011ad074 , dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:203 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] Notify service cc.momas.dubbo.api.AccountService with urls 0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:203 CST] main  WARN client.ServiceDiscoveryRegistryDirectory:  [DUBBO] Received empty url list, will ignore for protection purpose., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:203 CST] main-EventThread  INFO client.ServiceDiscoveryRegistry:  [DUBBO] Trying to subscribe from apps playground-apache-dubbo-provider for service key cc.momas.dubbo.api.AccountService, , dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:207 CST] main  INFO migration.DefaultMigrationAddressComparator:  [DUBBO] No instance address available, stop compare., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:207 CST] main  INFO migration.MigrationRuleHandler:  [DUBBO] Succeed Migrated to APPLICATION_FIRST mode. Service Name: cc.momas.dubbo.api.AccountService, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:207 CST] main  INFO config.ReferenceConfig:  [DUBBO] Referred dubbo service: [cc.momas.dubbo.api.AccountService]. it's not GenericService reference, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:208 CST] DubboSaveMetadataReport-thread-1  INFO zookeeper.ZookeeperMetadataReport:  [DUBBO] store consumer metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@1caea0b; definition: org.apache.dubbo.common.url.component.URLParam$URLParamMap@58b1b9a5, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:214 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Unsubscribe: consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&category=providers,configurators,routers&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:219 CST] main  INFO listener.ServiceInstancesChangedListener:  [DUBBO] Destroying instance listener of  [playground-apache-dubbo-provider], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:219 CST] main ERROR deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] refer catch error., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:219 CST] main ERROR deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] start failed: java.lang.IllegalStateException: Failed to check the status of the service cc.momas.dubbo.api.AccountService. No provider available for the service cc.momas.dubbo.api.AccountService from the url consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&register.ip=192.168.0.8&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620 to the consumer 192.168.0.8 use dubbo version 3.0.7, dubbo version: 3.0.7, current host: 192.168.0.8
java.lang.IllegalStateException: Failed to check the status of the service cc.momas.dubbo.api.AccountService. No provider available for the service cc.momas.dubbo.api.AccountService from the url consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&register.ip=192.168.0.8&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620 to the consumer 192.168.0.8 use dubbo version 3.0.7
	at org.apache.dubbo.config.ReferenceConfig.checkInvokerAvailable(ReferenceConfig.java:545)
	at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:293)
	at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:219)
	at org.apache.dubbo.config.utils.SimpleReferenceCache.get(SimpleReferenceCache.java:110)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.lambda$referServices$6(DefaultModuleDeployer.java:387)
	at java.util.concurrent.ConcurrentHashMap$ValuesView.forEach(ConcurrentHashMap.java:4707)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.referServices(DefaultModuleDeployer.java:367)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.start(DefaultModuleDeployer.java:154)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onContextRefreshedEvent(DubboDeployApplicationListener.java:111)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:100)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:45)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:404)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:361)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:898)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:554)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
	at cc.momas.dubbo.consumer.ConsumerApplication.main(ConsumerApplication.java:24)
[18/09/22 18:57:26:221 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] Metadata Service Port hasn't been set will use default protocol defined in protocols., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:221 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] Using dubbo protocol to export metadata service on port -1, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:238 CST] main  WARN config.ServiceConfig:  [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:260 CST] main  INFO config.ServiceConfig:  [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to local registry url : injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:261 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service org.apache.dubbo.metadata.MetadataService url dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:262 CST] main  INFO protocol.QosProtocolWrapper:  [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:296 CST] main  INFO transport.AbstractServer:  [DUBBO] Start NettyServer bind /0.0.0.0:20880, export /192.168.0.8:20880, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:300 CST] main  INFO migration.MigrationRuleListener:  [DUBBO] Listening for migration rules on dataId playground-apache-dubbo-consumer.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:301 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service org.apache.dubbo.metadata.MetadataService url dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:303 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Register: dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:305 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Subscribe: provider://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:306 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Notify urls for subscribe url provider://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, url size: 1, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:307 CST] main  INFO config.ServiceConfig:  [DUBBO] Successfully registered interface application mapping for service playground-apache-dubbo-consumer/org.apache.dubbo.metadata.MetadataService:1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:307 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] The MetadataService exports urls : [dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:307 CST] main  INFO metadata.ServiceInstanceMetadataUtils:  [DUBBO] Start registering instance address to registry., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:315 CST] main  INFO metadata.MetadataInfo:  [DUBBO] metadata revision changed: null -> 475f1a1b29dafb7faf88ae902e920aa6, app: playground-apache-dubbo-consumer, services: 1, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:753 CST] main ERROR deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-consumer) found failed module: Dubbo Module[1.1.1], dubbo version: 3.0.7, current host: 192.168.0.8
java.lang.IllegalStateException: Failed to check the status of the service cc.momas.dubbo.api.AccountService. No provider available for the service cc.momas.dubbo.api.AccountService from the url consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&register.ip=192.168.0.8&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620 to the consumer 192.168.0.8 use dubbo version 3.0.7
	at org.apache.dubbo.config.ReferenceConfig.checkInvokerAvailable(ReferenceConfig.java:545)
	at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:293)
	at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:219)
	at org.apache.dubbo.config.utils.SimpleReferenceCache.get(SimpleReferenceCache.java:110)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.lambda$referServices$6(DefaultModuleDeployer.java:387)
	at java.util.concurrent.ConcurrentHashMap$ValuesView.forEach(ConcurrentHashMap.java:4707)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.referServices(DefaultModuleDeployer.java:367)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.start(DefaultModuleDeployer.java:154)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onContextRefreshedEvent(DubboDeployApplicationListener.java:111)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:100)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:45)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:404)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:361)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:898)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:554)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
	at cc.momas.dubbo.consumer.ConsumerApplication.main(ConsumerApplication.java:24)
[18/09/22 18:57:26:756 CST] main  INFO logging.ConditionEvaluationReportLoggingListener: 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
[18/09/22 18:57:26:757 CST] main ERROR boot.SpringApplication: Application run failed
java.lang.IllegalStateException: Failed to check the status of the service cc.momas.dubbo.api.AccountService. No provider available for the service cc.momas.dubbo.api.AccountService from the url consumer://192.168.0.8/cc.momas.dubbo.api.AccountService?application=playground-apache-dubbo-consumer&background=false&dubbo=2.0.2&file.cache=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=10212&qos.enable=false&register.ip=192.168.0.8&release=3.0.7&side=consumer&sticky=false&timestamp=1663498644620 to the consumer 192.168.0.8 use dubbo version 3.0.7
	at org.apache.dubbo.config.ReferenceConfig.checkInvokerAvailable(ReferenceConfig.java:545)
	at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:293)
	at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:219)
	at org.apache.dubbo.config.utils.SimpleReferenceCache.get(SimpleReferenceCache.java:110)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.lambda$referServices$6(DefaultModuleDeployer.java:387)
	at java.util.concurrent.ConcurrentHashMap$ValuesView.forEach(ConcurrentHashMap.java:4707)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.referServices(DefaultModuleDeployer.java:367)
	at org.apache.dubbo.config.deploy.DefaultModuleDeployer.start(DefaultModuleDeployer.java:154)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onContextRefreshedEvent(DubboDeployApplicationListener.java:111)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:100)
	at org.apache.dubbo.config.spring.context.DubboDeployApplicationListener.onApplicationEvent(DubboDeployApplicationListener.java:45)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
	at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:404)
	at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:361)
	at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:898)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:554)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
	at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
	at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
	at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
	at cc.momas.dubbo.consumer.ConsumerApplication.main(ConsumerApplication.java:24)
[18/09/22 18:57:26:759 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] is stopping., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] has stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default application from Dubbo Application[1.1](playground-apache-dubbo-consumer) to null, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-consumer) is stopping., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO support.RegistryManager:  [DUBBO] Close all registries [zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=zk-registry&application=playground-apache-dubbo-consumer&dubbo=2.0.2&file.cache=false&interface=org.apache.dubbo.registry.RegistryService&pid=10212&qos.enable=false&release=3.0.7, zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=zk-registry&application=playground-apache-dubbo-consumer&dubbo=2.0.2&file.cache=false&interface=org.apache.dubbo.registry.RegistryService&pid=10212&qos.enable=false&release=3.0.7], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Destroy registry:zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=zk-registry&application=playground-apache-dubbo-consumer&dubbo=2.0.2&file.cache=false&interface=org.apache.dubbo.registry.RegistryService&pid=10212&qos.enable=false&release=3.0.7, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:760 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Unregister: dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:762 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Destroy unregister url dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:762 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Unsubscribe: provider://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:762 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Destroy unsubscribe url provider://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:766 CST] Curator-Framework-0  INFO imps.CuratorFrameworkImpl: backgroundOperationsLoop exiting
[18/09/22 18:57:26:768 CST] main  INFO zookeeper.ZooKeeper: Session: 0x100046e0ba00005 closed
[18/09/22 18:57:26:769 CST] main  INFO dubbo.DubboProtocol:  [DUBBO] Destroying protocol [DubboProtocol] ..., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:769 CST] main  INFO dubbo.DubboProtocol:  [DUBBO] Closing dubbo server: /192.168.0.8:20880, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:26:769 CST] main-EventThread  INFO zookeeper.ClientCnxn: EventThread shut down for session: 0x100046e0ba00005
[18/09/22 18:57:26:769 CST] main  INFO transport.AbstractServer:  [DUBBO] Close NettyServer bind /0.0.0.0:20880, export /192.168.0.8:20880, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:860 CST] main  INFO dubbo.DubboProtocol:  [DUBBO] Unexport service: dubbo://192.168.0.8:20880/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:860 CST] main  INFO injvm.InjvmProtocol:  [DUBBO] Unexport service: injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-consumer&background=false&bind.ip=192.168.0.8&bind.port=20880&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-consumer&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=10212&qos.enable=false&release=3.0.7&revision=3.0.7&side=provider&timestamp=1663498646234&version=1.0.0, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  WARN support.RegistryManager:  [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  INFO server.Server:  [DUBBO] qos-server stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  WARN support.RegistryManager:  [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  INFO server.Server:  [DUBBO] qos-server stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] is stopping., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:861 CST] main  WARN support.RegistryManager:  [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:862 CST] main  WARN support.RegistryManager:  [DUBBO] All registry instances have been destroyed, failed to fetch any instance. Usually, this means no need to try to do unnecessary redundant resource clearance, all registries has been taken care of., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:862 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] has stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:862 CST] main  INFO manager.DefaultExecutorRepository:  [DUBBO] destroying application executor repository .., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:863 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-consumer) has stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:863 CST] Curator-Framework-0  INFO imps.CuratorFrameworkImpl: backgroundOperationsLoop exiting
[18/09/22 18:57:28:865 CST] main  INFO zookeeper.ZooKeeper: Session: 0x100046e0ba00004 closed
[18/09/22 18:57:28:865 CST] main-EventThread  INFO zookeeper.ClientCnxn: EventThread shut down for session: 0x100046e0ba00004
[18/09/22 18:57:28:865 CST] main  INFO model.FrameworkModel:  [DUBBO] Destroying default framework model: Dubbo Framework[1], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO model.FrameworkModel:  [DUBBO] Dubbo Framework[1] is destroying ..., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.0](DUBBO_INTERNAL_APPLICATION) is stopping., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO support.RegistryManager:  [DUBBO] Close all registries [], dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.0.0] is stopping., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.0.0] has stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO manager.DefaultExecutorRepository:  [DUBBO] destroying application executor repository .., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.0](DUBBO_INTERNAL_APPLICATION) has stopped., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO model.FrameworkModel:  [DUBBO] Dubbo Framework[1] is destroyed, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default framework from Dubbo Framework[1] to null, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:865 CST] main  INFO resource.GlobalResourcesRepository:  [DUBBO] Destroying global resources ..., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:867 CST] main  INFO resource.GlobalResourcesRepository:  [DUBBO] Dubbo is completely destroyed, dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:867 CST] main  INFO manager.FrameworkExecutorRepository:  [DUBBO] destroying framework executor repository .., dubbo version: 3.0.7, current host: 192.168.0.8
[18/09/22 18:57:28:868 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Unbind Dubbo Module[1.1.1] from spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@1990a0c, dubbo version: 3.0.7, current host: 192.168.0.8

Process finished with exit code 1

@Sod-Momas
Copy link
Author

当然,我provider也是启动了的,用的也是示例里的代码,这是启动日志:

C:\Users\sod\.jdks\azul-11.0.16.1\bin\java.exe -javaagent:C:\Users\sod\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-0\222.3739.54\lib\idea_rt.jar=56556:C:\Users\sod\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-0\222.3739.54\bin -Dfile.encoding=UTF-8 -classpath C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-provider\target\classes;C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-model\target\classes;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo\3.0.7\dubbo-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\spring-context\5.2.7.RELEASE\spring-context-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-aop\5.2.7.RELEASE\spring-aop-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-beans\5.2.7.RELEASE\spring-beans-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-expression\5.2.7.RELEASE\spring-expression-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\sod\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\sod\.m2\repository\io\netty\netty-all\4.1.50.Final\netty-all-4.1.50.Final.jar;C:\Users\sod\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar;C:\Users\sod\.m2\repository\org\yaml\snakeyaml\1.26\snakeyaml-1.26.jar;C:\Users\sod\.m2\repository\com\alibaba\fastjson\1.2.70\fastjson-1.2.70.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-x-discovery\4.2.0\curator-x-discovery-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-recipes\4.2.0\curator-recipes-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-framework\4.2.0\curator-framework-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-client\4.2.0\curator-client-4.2.0.jar;C:\Users\sod\.m2\repository\com\google\guava\guava\27.0.1-jre\guava-27.0.1-jre.jar;C:\Users\sod\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\sod\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\sod\.m2\repository\org\checkerframework\checker-qual\2.5.2\checker-qual-2.5.2.jar;C:\Users\sod\.m2\repository\com\google\errorprone\error_prone_annotations\2.2.0\error_prone_annotations-2.2.0.jar;C:\Users\sod\.m2\repository\com\google\j2objc\j2objc-annotations\1.1\j2objc-annotations-1.1.jar;C:\Users\sod\.m2\repository\org\codehaus\mojo\animal-sniffer-annotations\1.17\animal-sniffer-annotations-1.17.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.11.0\jackson-databind-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.0\jackson-annotations-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.11.0\jackson-core-2.11.0.jar;C:\Users\sod\.m2\repository\org\apache\zookeeper\zookeeper\3.4.14\zookeeper-3.4.14.jar;C:\Users\sod\.m2\repository\com\github\spotbugs\spotbugs-annotations\3.1.9\spotbugs-annotations-3.1.9.jar;C:\Users\sod\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\sod\.m2\repository\jline\jline\0.9.94\jline-0.9.94.jar;C:\Users\sod\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.7\dubbo-spring-boot-starter-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.7\dubbo-spring-boot-autoconfigure-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.7\dubbo-spring-boot-autoconfigure-compatible-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter\2.3.1.RELEASE\spring-boot-starter-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot\2.3.1.RELEASE\spring-boot-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.3.1.RELEASE\spring-boot-starter-logging-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;C:\Users\sod\.m2\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;C:\Users\sod\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\sod\.m2\repository\org\springframework\spring-core\5.2.7.RELEASE\spring-core-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-jcl\5.2.7.RELEASE\spring-jcl-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.3.1.RELEASE\spring-boot-autoconfigure-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-log4j12\1.7.25\slf4j-log4j12-1.7.25.jar;C:\Users\sod\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar cc.momas.dubbo.provider.PlaygroundDubboProviderApplication
[19/09/22 09:22:07:904 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServerMain: Starting server
[19/09/22 09:22:07:962 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:zookeeper.version=3.4.14-4c25d480e66aadd371de8bd2fd8da255ac140bcf, built on 03/06/2019 16:18 GMT
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:host.name=host.docker.internal
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.version=11.0.16.1
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.vendor=Azul Systems, Inc.
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.home=C:\Users\sod\.jdks\azul-11.0.16.1
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.class.path=C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-provider\target\classes;C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-model\target\classes;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo\3.0.7\dubbo-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\spring-context\5.2.7.RELEASE\spring-context-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-aop\5.2.7.RELEASE\spring-aop-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-beans\5.2.7.RELEASE\spring-beans-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-expression\5.2.7.RELEASE\spring-expression-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\sod\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\sod\.m2\repository\io\netty\netty-all\4.1.50.Final\netty-all-4.1.50.Final.jar;C:\Users\sod\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar;C:\Users\sod\.m2\repository\org\yaml\snakeyaml\1.26\snakeyaml-1.26.jar;C:\Users\sod\.m2\repository\com\alibaba\fastjson\1.2.70\fastjson-1.2.70.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-x-discovery\4.2.0\curator-x-discovery-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-recipes\4.2.0\curator-recipes-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-framework\4.2.0\curator-framework-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-client\4.2.0\curator-client-4.2.0.jar;C:\Users\sod\.m2\repository\com\google\guava\guava\27.0.1-jre\guava-27.0.1-jre.jar;C:\Users\sod\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\sod\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\sod\.m2\repository\org\checkerframework\checker-qual\2.5.2\checker-qual-2.5.2.jar;C:\Users\sod\.m2\repository\com\google\errorprone\error_prone_annotations\2.2.0\error_prone_annotations-2.2.0.jar;C:\Users\sod\.m2\repository\com\google\j2objc\j2objc-annotations\1.1\j2objc-annotations-1.1.jar;C:\Users\sod\.m2\repository\org\codehaus\mojo\animal-sniffer-annotations\1.17\animal-sniffer-annotations-1.17.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.11.0\jackson-databind-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.0\jackson-annotations-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.11.0\jackson-core-2.11.0.jar;C:\Users\sod\.m2\repository\org\apache\zookeeper\zookeeper\3.4.14\zookeeper-3.4.14.jar;C:\Users\sod\.m2\repository\com\github\spotbugs\spotbugs-annotations\3.1.9\spotbugs-annotations-3.1.9.jar;C:\Users\sod\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\sod\.m2\repository\jline\jline\0.9.94\jline-0.9.94.jar;C:\Users\sod\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.7\dubbo-spring-boot-starter-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.7\dubbo-spring-boot-autoconfigure-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.7\dubbo-spring-boot-autoconfigure-compatible-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter\2.3.1.RELEASE\spring-boot-starter-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot\2.3.1.RELEASE\spring-boot-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.3.1.RELEASE\spring-boot-starter-logging-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;C:\Users\sod\.m2\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;C:\Users\sod\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\sod\.m2\repository\org\springframework\spring-core\5.2.7.RELEASE\spring-core-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-jcl\5.2.7.RELEASE\spring-jcl-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.3.1.RELEASE\spring-boot-autoconfigure-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-log4j12\1.7.25\slf4j-log4j12-1.7.25.jar;C:\Users\sod\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar
[19/09/22 09:22:07:963 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.library.path=C:\Users\sod\.jdks\azul-11.0.16.1\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Microsoft\jdk-11.0.12.7-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Tencent\微信web开发者工具\dll;C:\Pro;ram Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\dotnet\;C:\Users\sod\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\Git\cmd;C:\Program Files\Go\bin;C:\Users\sod\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Java\jdk1.8.0_202\bin;C:\Programs\apache-maven-3.8.2-bin\apache-maven-3.8.2\bin;C:\Users\sod\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\sod\AppData\Roaming\npm;C:\Users\sod\.dotnet\tools;C:\Program Files (x86)\Android\android-sdk\platform-tools;C:\Users\sod\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\sod\go\bin;.
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.io.tmpdir=C:\Users\TOPHAN~1\AppData\Local\Temp\
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:java.compiler=<NA>
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:os.name=Windows 10
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:os.arch=amd64
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:os.version=10.0
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:user.name=sod
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:user.home=C:\Users\sod
[19/09/22 09:22:07:964 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: Server environment:user.dir=C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo
[19/09/22 09:22:07:984 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: tickTime set to 3000
[19/09/22 09:22:07:985 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: minSessionTimeout set to -1
[19/09/22 09:22:07:985 CST] ZooKeeper Server Starter  INFO server.ZooKeeperServer: maxSessionTimeout set to -1
[19/09/22 09:22:08:014 CST] ZooKeeper Server Starter  INFO server.ServerCnxnFactory: Using org.apache.zookeeper.server.NIOServerCnxnFactory as server connection factory
[19/09/22 09:22:08:021 CST] ZooKeeper Server Starter  INFO server.NIOServerCnxnFactory: binding to port 0.0.0.0/0.0.0.0:2181
[19/09/22 09:22:08:409 CST] main  INFO event.WelcomeLogoApplicationListener: 

 :: Dubbo Spring Boot (v3.0.7) : https://github.com/apache/dubbo-spring-boot-project
 :: Dubbo (v3.0.7) : https://github.com/apache/dubbo
 :: Discuss group : dev@dubbo.apache.org


  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.3.1.RELEASE)

[19/09/22 09:22:08:586 CST] main  INFO provider.PlaygroundDubboProviderApplication: Starting PlaygroundDubboProviderApplication on DESKTOP-H79UPH5 with PID 4404 (C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-provider\target\classes started by sod in C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo)
[19/09/22 09:22:08:587 CST] main  INFO provider.PlaygroundDubboProviderApplication: No active profile set, falling back to default profiles: default
[19/09/22 09:22:09:646 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default framework from null to Dubbo Framework[1], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:646 CST] main  INFO model.FrameworkModel:  [DUBBO] Dubbo Framework[1] is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:696 CST] main  INFO model.ApplicationModel:  [DUBBO] Dubbo Application[1.0](unknown) is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:698 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.0.0] is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:735 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:736 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:850 CST] main  INFO model.FrameworkModel:  [DUBBO] Reset global default application from null to Dubbo Application[1.1](unknown), dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:850 CST] main  INFO model.ApplicationModel:  [DUBBO] Dubbo Application[1.1](unknown) is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:851 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.1.0] is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:860 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:860 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:873 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Use default application: Dubbo Application[1.1](unknown), dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:873 CST] main  INFO model.ScopeModel:  [DUBBO] Dubbo Module[1.1.1] is created, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:878 CST] main  INFO context.AbstractConfigManager:  [DUBBO] Config settings: {dubbo.config.mode=STRICT, dubbo.config.ignore-duplicated-interface=false}, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:882 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Use default module model of target application: Dubbo Module[1.1.1], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:882 CST] main  INFO context.DubboSpringInitializer:  [DUBBO] Bind Dubbo Module[1.1.1] to spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@4b3ed2f0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:998 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:09:998 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:002 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] Found 1 classes annotated by Dubbo @Service under package [cc.momas.dubbo.provider]: [cc.momas.dubbo.provider.AccountServiceImpl], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:020 CST] main  INFO annotation.ServiceAnnotationPostProcessor:  [DUBBO] Register ServiceBean[ServiceBean:cc.momas.dubbo.api.AccountService:1.0.0]: Root bean: class [org.apache.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:262 CST] main  INFO annotation.ReferenceAnnotationBeanPostProcessor: class org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor was destroying!
[19/09/22 09:22:10:414 CST] main  INFO context.DubboConfigBeanInitializer: loading dubbo config beans ...
[19/09/22 09:22:10:500 CST] main  INFO context.DubboConfigBeanInitializer: dubbo config beans are loaded.
[19/09/22 09:22:10:633 CST] main  INFO utils.Compatibility: Running in ZooKeeper 3.4.x compatibility mode
[19/09/22 09:22:10:634 CST] main  INFO utils.Compatibility: Using emulated InjectSessionExpiration
[19/09/22 09:22:10:674 CST] main  INFO imps.CuratorFrameworkImpl: Starting
[19/09/22 09:22:10:679 CST] main  INFO zookeeper.ZooKeeper: Client environment:zookeeper.version=3.4.14-4c25d480e66aadd371de8bd2fd8da255ac140bcf, built on 03/06/2019 16:18 GMT
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:host.name=host.docker.internal
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.version=11.0.16.1
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.vendor=Azul Systems, Inc.
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.home=C:\Users\sod\.jdks\azul-11.0.16.1
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.class.path=C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-provider\target\classes;C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo\playground-apache-dubbo-model\target\classes;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo\3.0.7\dubbo-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\spring-context\5.2.7.RELEASE\spring-context-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-aop\5.2.7.RELEASE\spring-aop-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-beans\5.2.7.RELEASE\spring-beans-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-expression\5.2.7.RELEASE\spring-expression-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\com\alibaba\spring\spring-context-support\1.0.8\spring-context-support-1.0.8.jar;C:\Users\sod\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\sod\.m2\repository\io\netty\netty-all\4.1.50.Final\netty-all-4.1.50.Final.jar;C:\Users\sod\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar;C:\Users\sod\.m2\repository\org\yaml\snakeyaml\1.26\snakeyaml-1.26.jar;C:\Users\sod\.m2\repository\com\alibaba\fastjson\1.2.70\fastjson-1.2.70.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-x-discovery\4.2.0\curator-x-discovery-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-recipes\4.2.0\curator-recipes-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-framework\4.2.0\curator-framework-4.2.0.jar;C:\Users\sod\.m2\repository\org\apache\curator\curator-client\4.2.0\curator-client-4.2.0.jar;C:\Users\sod\.m2\repository\com\google\guava\guava\27.0.1-jre\guava-27.0.1-jre.jar;C:\Users\sod\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\sod\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\sod\.m2\repository\org\checkerframework\checker-qual\2.5.2\checker-qual-2.5.2.jar;C:\Users\sod\.m2\repository\com\google\errorprone\error_prone_annotations\2.2.0\error_prone_annotations-2.2.0.jar;C:\Users\sod\.m2\repository\com\google\j2objc\j2objc-annotations\1.1\j2objc-annotations-1.1.jar;C:\Users\sod\.m2\repository\org\codehaus\mojo\animal-sniffer-annotations\1.17\animal-sniffer-annotations-1.17.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.11.0\jackson-databind-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.0\jackson-annotations-2.11.0.jar;C:\Users\sod\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.11.0\jackson-core-2.11.0.jar;C:\Users\sod\.m2\repository\org\apache\zookeeper\zookeeper\3.4.14\zookeeper-3.4.14.jar;C:\Users\sod\.m2\repository\com\github\spotbugs\spotbugs-annotations\3.1.9\spotbugs-annotations-3.1.9.jar;C:\Users\sod\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\sod\.m2\repository\jline\jline\0.9.94\jline-0.9.94.jar;C:\Users\sod\.m2\repository\org\apache\yetus\audience-annotations\0.5.0\audience-annotations-0.5.0.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-starter\3.0.7\dubbo-spring-boot-starter-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure\3.0.7\dubbo-spring-boot-autoconfigure-3.0.7.jar;C:\Users\sod\.m2\repository\org\apache\dubbo\dubbo-spring-boot-autoconfigure-compatible\3.0.7\dubbo-spring-boot-autoconfigure-compatible-3.0.7.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter\2.3.1.RELEASE\spring-boot-starter-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot\2.3.1.RELEASE\spring-boot-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.3.1.RELEASE\spring-boot-starter-logging-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;C:\Users\sod\.m2\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;C:\Users\sod\.m2\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;C:\Users\sod\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\sod\.m2\repository\org\springframework\spring-core\5.2.7.RELEASE\spring-core-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\spring-jcl\5.2.7.RELEASE\spring-jcl-5.2.7.RELEASE.jar;C:\Users\sod\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.3.1.RELEASE\spring-boot-autoconfigure-2.3.1.RELEASE.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\sod\.m2\repository\org\slf4j\slf4j-log4j12\1.7.25\slf4j-log4j12-1.7.25.jar;C:\Users\sod\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.library.path=C:\Users\sod\.jdks\azul-11.0.16.1\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Microsoft\jdk-11.0.12.7-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Tencent\微信web开发者工具\dll;C:\Pro;ram Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\dotnet\;C:\Users\sod\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\Git\cmd;C:\Program Files\Go\bin;C:\Users\sod\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Java\jdk1.8.0_202\bin;C:\Programs\apache-maven-3.8.2-bin\apache-maven-3.8.2\bin;C:\Users\sod\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\sod\AppData\Roaming\npm;C:\Users\sod\.dotnet\tools;C:\Program Files (x86)\Android\android-sdk\platform-tools;C:\Users\sod\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\sod\go\bin;.
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.io.tmpdir=C:\Users\TOPHAN~1\AppData\Local\Temp\
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:java.compiler=<NA>
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.name=Windows 10
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.arch=amd64
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:os.version=10.0
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.name=sod
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.home=C:\Users\sod
[19/09/22 09:22:10:680 CST] main  INFO zookeeper.ZooKeeper: Client environment:user.dir=C:\Users\sod\Downloads\git-dir\playground\playground-apache-dubbo
[19/09/22 09:22:10:682 CST] main  INFO zookeeper.ZooKeeper: Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@1e008f36
[19/09/22 09:22:10:698 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Opening socket connection to server activate.navicat.com/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
[19/09/22 09:22:10:698 CST] main  INFO imps.CuratorFrameworkImpl: Default schema
[19/09/22 09:22:10:699 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Socket connection established to activate.navicat.com/127.0.0.1:2181, initiating session
[19/09/22 09:22:10:699 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxnFactory: Accepted socket connection from /127.0.0.1:56568
[19/09/22 09:22:10:707 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.ZooKeeperServer: Client attempting to establish new session at /127.0.0.1:56568
[19/09/22 09:22:10:711 CST] SyncThread:0  INFO persistence.FileTxnLog: Creating new log file: log.1
[19/09/22 09:22:10:728 CST] SyncThread:0  INFO server.ZooKeeperServer: Established session 0x1000f3cf7f60000 with negotiated timeout 60000 for client /127.0.0.1:56568
[19/09/22 09:22:10:728 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Session establishment complete on server activate.navicat.com/127.0.0.1:2181, sessionid = 0x1000f3cf7f60000, negotiated timeout = 60000
[19/09/22 09:22:10:740 CST] main-EventThread  INFO state.ConnectionStateManager: State change: CONNECTED
[19/09/22 09:22:10:741 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] No valid zookeeper client found from cache, therefore create a new client for url. zookeeper://127.0.0.1:2181/org.apache.dubbo.config.ConfigCenterConfig?check=true&config-file=dubbo.properties&group=dubbo&include.spring.env=false&namespace=dubbo&timeout=30000, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:747 CST] Curator-ConnectionStateManager-0  INFO curator.CuratorZookeeperClient:  [DUBBO] Curator zookeeper client instance initiated successfully, session id is 1000f3cf7f60000, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:781 CST] main  WARN config.ConfigurationUtils:  [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:781 CST] main  WARN config.ConfigurationUtils:  [DUBBO] Config center was specified, but no config item found., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:886 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] has been initialized!, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:10:897 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] has been initialized!, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:074 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] find valid zookeeper client from the cache for address: zookeeper://127.0.0.1:2181/org.apache.dubbo.metadata.report.MetadataReport?application=playground-apache-dubbo-provider&port=2181&protocol=zookeeper, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:075 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-provider) has been initialized!, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:454 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] is starting., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:455 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-provider) is starting., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:605 CST] main  INFO config.ServiceConfig:  [DUBBO] Export dubbo service cc.momas.dubbo.api.AccountService to local registry url : injvm://127.0.0.1/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&qos.enable=false&release=3.0.7&revision=1.0.0&side=provider&timestamp=1663550531498&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:606 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service cc.momas.dubbo.api.AccountService url dubbo://10.0.86.143:2200/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&qos.enable=false&release=3.0.7&revision=1.0.0&service-name-mapping=true&side=provider&timestamp=1663550531498&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:612 CST] main  INFO protocol.QosProtocolWrapper:  [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:11:636 CST] Curator-Framework-0  WARN utils.ZKPaths: The version of ZooKeeper being used doesn't support Container nodes. CreateMode.PERSISTENT will be used instead.
[19/09/22 09:22:12:575 CST] main  INFO transport.AbstractServer:  [DUBBO] Start NettyServer bind /0.0.0.0:2200, export /10.0.86.143:2200, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:625 CST] main  INFO store.MetaCacheManager:  [DUBBO] Successfully loaded mapping cache from file .metadata.zookeeper127.0.0.1:2181, entries 0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:629 CST] main  INFO imps.CuratorFrameworkImpl: Starting
[19/09/22 09:22:12:630 CST] main  INFO zookeeper.ZooKeeper: Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@40729f01
[19/09/22 09:22:12:631 CST] main  INFO imps.CuratorFrameworkImpl: Default schema
[19/09/22 09:22:12:632 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Opening socket connection to server activate.navicat.com/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
[19/09/22 09:22:12:633 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Socket connection established to activate.navicat.com/127.0.0.1:2181, initiating session
[19/09/22 09:22:12:633 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxnFactory: Accepted socket connection from /127.0.0.1:56599
[19/09/22 09:22:12:633 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.ZooKeeperServer: Client attempting to establish new session at /127.0.0.1:56599
[19/09/22 09:22:12:636 CST] SyncThread:0  INFO server.ZooKeeperServer: Established session 0x1000f3cf7f60001 with negotiated timeout 60000 for client /127.0.0.1:56599
[19/09/22 09:22:12:636 CST] main-SendThread(activate.navicat.com:2181)  INFO zookeeper.ClientCnxn: Session establishment complete on server activate.navicat.com/127.0.0.1:2181, sessionid = 0x1000f3cf7f60001, negotiated timeout = 60000
[19/09/22 09:22:12:636 CST] main-EventThread  INFO state.ConnectionStateManager: State change: CONNECTED
[19/09/22 09:22:12:802 CST] main  INFO metadata.MappingCacheManager:  [DUBBO] Successfully loaded mapping cache from file .mapping, entries 0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:819 CST] main  INFO migration.MigrationRuleListener:  [DUBBO] Listening for migration rules on dataId playground-apache-dubbo-provider.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:824 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service cc.momas.dubbo.api.AccountService url dubbo://10.0.86.143:2200/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&qos.enable=false&release=3.0.7&revision=1.0.0&service-name-mapping=true&side=provider&timestamp=1663550531498&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:825 CST] main  INFO protocol.QosProtocolWrapper:  [DUBBO] qos won't be started because it is disabled. Please check dubbo.application.qos.enable is configured either in system property, dubbo.properties or XML/spring-boot configuration., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:835 CST] main  INFO zookeeper.ZookeeperTransporter:  [DUBBO] find valid zookeeper client from the cache for address: zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?REGISTRY_CLUSTER=zk-registry&application=playground-apache-dubbo-provider&dubbo=2.0.2&file.cache=false&interface=org.apache.dubbo.registry.RegistryService&pid=4404&qos.enable=false&release=3.0.7, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:839 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Register: dubbo://10.0.86.143:2200/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&release=3.0.7&revision=1.0.0&service-name-mapping=true&side=provider&timestamp=1663550531498&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:857 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Subscribe: provider://10.0.86.143:2200/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&qos.enable=false&release=3.0.7&revision=1.0.0&service-name-mapping=true&side=provider&timestamp=1663550531498&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:873 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Notify urls for subscribe url provider://10.0.86.143:2200/cc.momas.dubbo.api.AccountService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&file.cache=false&generic=false&interface=cc.momas.dubbo.api.AccountService&methods=sayHello,loginByNamePwd,sayHelloAsync&pid=4404&qos.enable=false&release=3.0.7&revision=1.0.0&service-name-mapping=true&side=provider&timestamp=1663550531498&version=1.0.0, url size: 1, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:909 CST] DubboSaveMetadataReport-thread-1  INFO zookeeper.ZookeeperMetadataReport:  [DUBBO] store provider metadata. Identifier : org.apache.dubbo.metadata.report.identifier.MetadataIdentifier@51f3f0c5; definition: FullServiceDefinition{parameters=org.apache.dubbo.common.url.component.URLParam$URLParamMap@788c8859} ServiceDefinition [canonicalName=cc.momas.dubbo.api.AccountService, codeSource=file:/C:/Users/sod/Downloads/git-dir/playground/playground-apache-dubbo/playground-apache-dubbo-model/target/classes/, methods=[MethodDefinition [name=sayHello, parameterTypes=[java.lang.String], returnType=java.lang.String], MethodDefinition [name=sayHelloAsync, parameterTypes=[java.lang.String], returnType=java.util.concurrent.CompletableFuture], MethodDefinition [name=loginByNamePwd, parameterTypes=[java.lang.String, java.lang.String], returnType=cc.momas.dubbo.entity.MomasAccount]]], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:925 CST] main  INFO config.ServiceConfig:  [DUBBO] Successfully registered interface application mapping for service cc.momas.dubbo.api.AccountService:1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:925 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] is starting., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:926 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.0] has started., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:927 CST] main  INFO deploy.DefaultModuleDeployer:  [DUBBO] Dubbo Module[1.1.1] has started., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:929 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] Metadata Service Port hasn't been set will use default protocol defined in protocols., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:930 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] Using dubbo protocol to export metadata service on port 2200, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:982 CST] main  INFO config.ServiceConfig:  [DUBBO] Export dubbo service org.apache.dubbo.metadata.MetadataService to local registry url : injvm://127.0.0.1/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&side=provider&timestamp=1663550532949&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:983 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service org.apache.dubbo.metadata.MetadataService url dubbo://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:993 CST] main  INFO migration.MigrationRuleListener:  [DUBBO] Listening for migration rules on dataId playground-apache-dubbo-provider.migration, group DUBBO_SERVICEDISCOVERY_MIGRATION, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:995 CST] main  INFO config.ServiceConfig:  [DUBBO] Register dubbo service org.apache.dubbo.metadata.MetadataService url dubbo://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0 to registry 127.0.0.1:2181, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:12:999 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Register: dubbo://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:012 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Subscribe: provider://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:019 CST] main  INFO zookeeper.ZookeeperRegistry:  [DUBBO] Notify urls for subscribe url provider://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&category=configurators&check=false&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0, url size: 1, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:019 CST] main  INFO config.ServiceConfig:  [DUBBO] Successfully registered interface application mapping for service playground-apache-dubbo-provider/org.apache.dubbo.metadata.MetadataService:1.0.0, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:020 CST] main  INFO metadata.ConfigurableMetadataServiceExporter:  [DUBBO] The MetadataService exports urls : [dubbo://10.0.86.143:2200/org.apache.dubbo.metadata.MetadataService?anyhost=true&application=playground-apache-dubbo-provider&background=false&bind.ip=10.0.86.143&bind.port=2200&connections=1&delay=0&deprecated=false&dubbo=2.0.2&dynamic=true&executes=100&file.cache=false&generic=false&group=playground-apache-dubbo-provider&interface=org.apache.dubbo.metadata.MetadataService&methods=getMetadataURL,isMetadataService,getExportedURLs,serviceName,version,getSubscribedURLs,getExportedServiceURLs,getMetadataInfo,toSortedStrings,getMetadataInfos,getServiceDefinition&pid=4404&qos.enable=false&release=3.0.7&revision=3.0.7&service-name-mapping=true&side=provider&timestamp=1663550532949&version=1.0.0], dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:021 CST] main  INFO metadata.ServiceInstanceMetadataUtils:  [DUBBO] Start registering instance address to registry., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:039 CST] main  INFO metadata.MetadataInfo:  [DUBBO] metadata revision changed: null -> 69ffc4226e55af4dd322edbb011ad074, app: playground-apache-dubbo-provider, services: 2, dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:423 CST] ProcessThread(sid:0 cport:2181):  INFO server.PrepRequestProcessor: Got user-level KeeperException when processing sessionid:0x1000f3cf7f60001 type:create cxid:0x1 zxid:0x16 txntype:-1 reqpath:n/a Error Path:/services/playground-apache-dubbo-provider Error:KeeperErrorCode = NoNode for /services/playground-apache-dubbo-provider
[19/09/22 09:22:13:433 CST] main  INFO deploy.DefaultApplicationDeployer:  [DUBBO] Dubbo Application[1.1](playground-apache-dubbo-provider) is ready., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:13:439 CST] main  INFO provider.PlaygroundDubboProviderApplication: Started PlaygroundDubboProviderApplication in 5.713 seconds (JVM running for 6.508)
[19/09/22 09:22:13:443 CST] main  INFO provider.PlaygroundDubboProviderApplication: dubbo service started
[19/09/22 09:22:13:443 CST] pool-1-thread-1  INFO event.AwaitingNonWebApplicationListener:  [Dubbo] Current Spring Boot Application is await...
[19/09/22 09:22:29:192 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxnFactory: Accepted socket connection from /127.0.0.1:56615
[19/09/22 09:22:29:195 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.ZooKeeperServer: Client attempting to establish new session at /127.0.0.1:56615
[19/09/22 09:22:29:199 CST] SyncThread:0  INFO server.ZooKeeperServer: Established session 0x1000f3cf7f60002 with negotiated timeout 60000 for client /127.0.0.1:56615
[19/09/22 09:22:30:093 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxnFactory: Accepted socket connection from /127.0.0.1:56618
[19/09/22 09:22:30:094 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.ZooKeeperServer: Client attempting to establish new session at /127.0.0.1:56618
[19/09/22 09:22:30:096 CST] SyncThread:0  INFO server.ZooKeeperServer: Established session 0x1000f3cf7f60003 with negotiated timeout 60000 for client /127.0.0.1:56618
[19/09/22 09:22:31:164 CST] NettyServerWorker-3-1  INFO netty4.NettyServerHandler:  [DUBBO] The connection of /10.0.86.143:56646 -> /10.0.86.143:2200 is established., dubbo version: 3.0.7, current host: 10.0.86.143
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.alibaba.com.caucho.hessian.io.Hessian2Input (file:/C:/Users/sod/.m2/repository/org/apache/dubbo/dubbo/3.0.7/dubbo-3.0.7.jar) to field java.lang.Throwable.detailMessage
WARNING: Please consider reporting this to the maintainers of com.alibaba.com.caucho.hessian.io.Hessian2Input
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[19/09/22 09:22:31:394 CST] NettyServerWorker-3-1  WARN transport.AbstractServer:  [DUBBO] All clients has disconnected from /10.0.86.143:2200. You can graceful shutdown now., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:31:395 CST] NettyServerWorker-3-1  INFO netty4.NettyServerHandler:  [DUBBO] The connection of /10.0.86.143:56646 -> /10.0.86.143:2200 is disconnected., dubbo version: 3.0.7, current host: 10.0.86.143
[19/09/22 09:22:31:478 CST] ProcessThread(sid:0 cport:2181):  INFO server.PrepRequestProcessor: Got user-level KeeperException when processing sessionid:0x1000f3cf7f60003 type:create cxid:0x3 zxid:0x1f txntype:-1 reqpath:n/a Error Path:/services/playground-apache-dubbo-provider Error:KeeperErrorCode = NodeExists for /services/playground-apache-dubbo-provider
[19/09/22 09:22:31:955 CST] ProcessThread(sid:0 cport:2181):  INFO server.PrepRequestProcessor: Got user-level KeeperException when processing sessionid:0x1000f3cf7f60003 type:create cxid:0x9 zxid:0x24 txntype:-1 reqpath:n/a Error Path:/services/playground-apache-dubbo-consumer Error:KeeperErrorCode = NoNode for /services/playground-apache-dubbo-consumer
[19/09/22 09:22:31:990 CST] ProcessThread(sid:0 cport:2181):  INFO server.PrepRequestProcessor: Processed session termination for sessionid: 0x1000f3cf7f60003
[19/09/22 09:22:31:993 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxn: Closed socket connection for client /127.0.0.1:56618 which had sessionid 0x1000f3cf7f60003
[19/09/22 09:22:34:098 CST] ProcessThread(sid:0 cport:2181):  INFO server.PrepRequestProcessor: Processed session termination for sessionid: 0x1000f3cf7f60002
[19/09/22 09:22:34:102 CST] NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181  INFO server.NIOServerCnxn: Closed socket connection for client /127.0.0.1:56615 which had sessionid 0x1000f3cf7f60002

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant