alibaba / nacos

an easy-to-use dynamic service discovery, configuration and service management platform for building cloud native applications.
https://nacos.io
Apache License 2.0
30.04k stars 12.8k forks source link

Nacos integrated Dubbo throw an exception when dubbo service register first time #4836

Closed wltj920 closed 3 years ago

wltj920 commented 3 years ago

This issue I have report to dubbo, but they told me to find answer here. Dubbo issue page see here: Issue #7154

Environment

Steps to reproduce this issue

  1. SpringCloud Alibaba project add nacos discovery, nacos config, dubbo dependencies, like this:
    <dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
    </dependency>
    <dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
    </dependency>
    <dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-dubbo</artifactId>
    </dependency>
  2. Add dubbo configurations like this:
    # Apache Dubbo RPC框架的配置
    # 注意:Dubbo RPC默认使用NIO异步传输,hessian序列化协议,不适合传100K以上的数据
    dubbo:
    scan:
    base-packages: cn.xxxxxx.xxx.xxxx.xxxx.fw7.xxxx.xxx.xxxx.service # Dubbo服务扫描的包
    protocol:
    name: dubbo # 通信协议,支持http等,默认使用dubbo私有协议,NIO异步传输
    port: -1 # -1 表示端口自增
    registry:
    address: nacos://${spring.cloud.nacos.discovery.server-addr}?username=${spring.cloud.nacos.username}&password=${spring.cloud.nacos.password} # 注册中心的地址
    parameters:
      namespace: fw7 # 指定注册中心的命名空间
      group: DUBBO # 注册中心分组
    use-as-config-center: false # 不将注册中心用于配置中心
    use-as-metadata-center: false # 不将注册中心用于元数据中心
    check: false # 启动时不检查注册中心的状态,避免报错
    cloud:
    subscribed-services: "" # 订阅的Dubbo服务,用,分割,默认为*
    consumer:
    check: false # 启动时不检查生产者的状态,防止生产者未启动时启动失败# Dubbo生产环境配置
    provider:
    token: true # 服务提供者要求使用随机Token加密,防止消费者绕过注册中心调用
  3. Write a dubbo service and set a version like this:

    @DubboService(version = "1.0.0")
    public class RpcRegionServiceImpl implements RpcRegionService {
    
    @Autowired
    private RegionService regionService;
    
    @Override
    public RegionDto getRegionById(String id) {
        Region region = regionService.getById(id);
        return Convert.convert(RegionDto.class, region);
    }
    }
  4. Run nacos and project, see exception in console
  5. Restart the project, the exception is gone.
  6. Update the dubbo service version, restart the project, the exception throw again.

Expected Result

The project has no exception throw when dubbo service register nacos first time. And I hope don't add any config in nacos-config-center.

Actual Result

Please see the exception:

2021-01-29 17:11:22.187 ERROR 18068 --- [main] com.alibaba.nacos.client.naming.callServer:617 : [NA] failed to request

com.alibaba.nacos.api.exception.NacosException: caused: Get data failed, key: com.alibaba.nacos.naming.iplist.fw7##DUBBO@@providers:cn.xxxxxx.xxx.xxxx.xxxx.fw7.xxxx.xxx.xxxx.service.RpcRegionService:1.0.0:;
    at com.alibaba.nacos.client.naming.net.NamingProxy.callServer(NamingProxy.java:615)
    at com.alibaba.nacos.client.naming.net.NamingProxy.reqApi(NamingProxy.java:526)
    at com.alibaba.nacos.client.naming.net.NamingProxy.reqApi(NamingProxy.java:498)
    at com.alibaba.nacos.client.naming.net.NamingProxy.reqApi(NamingProxy.java:493)
    at com.alibaba.nacos.client.naming.net.NamingProxy.registerService(NamingProxy.java:246)
    at com.alibaba.nacos.client.naming.NacosNamingService.registerInstance(NacosNamingService.java:212)
    at org.apache.dubbo.registry.nacos.NacosRegistry.lambda$doRegister$1(NacosRegistry.java:160)
    at org.apache.dubbo.registry.nacos.NacosRegistry.execute(NacosRegistry.java:583)
    at org.apache.dubbo.registry.nacos.NacosRegistry.doRegister(NacosRegistry.java:160)
    at org.apache.dubbo.registry.support.FailbackRegistry.register(FailbackRegistry.java:240)
    at org.apache.dubbo.registry.ListenerRegistryWrapper.register(ListenerRegistryWrapper.java:57)
    at org.apache.dubbo.registry.integration.RegistryProtocol.register(RegistryProtocol.java:178)
    at org.apache.dubbo.registry.integration.RegistryProtocol.export(RegistryProtocol.java:214)
    at org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper.export(ProtocolListenerWrapper.java:62)
    at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:153)
    at org.apache.dubbo.qos.protocol.QosProtocolWrapper.export(QosProtocolWrapper.java:64)
    at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java)
    at org.apache.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:492)
    at org.apache.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:325)
    at org.apache.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:300)
    at org.apache.dubbo.config.ServiceConfig.export(ServiceConfig.java:206)
    at org.apache.dubbo.config.bootstrap.DubboBootstrap.lambda$exportServices$15(DubboBootstrap.java:1103)
    at java.base/java.util.HashMap$Values.forEach(HashMap.java:976)
    at org.apache.dubbo.config.bootstrap.DubboBootstrap.exportServices(DubboBootstrap.java:1090)
    at org.apache.dubbo.config.bootstrap.DubboBootstrap.start(DubboBootstrap.java:901)
    at org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener.onContextRefreshedEvent(DubboBootstrapApplicationListener.java:59)
    at org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener.onApplicationContextEvent(DubboBootstrapApplicationListener.java:52)
    at org.apache.dubbo.config.spring.context.OneTimeExecutionApplicationContextEventListener.onApplicationEvent(OneTimeExecutionApplicationContextEventListener.java:40)
...
KomachiSion commented 3 years ago

Please see the nacos server log and find out what's error information in nacos server please.

KomachiSion commented 3 years ago

Do you set the instance ephemeral is false?

wltj920 commented 3 years ago

Please see the nacos server log and find out what's error information in nacos server please.

I see the same error in nacos\logs\nacos.log. Other than that, there are no other errors

And I try the same way to use nacos 1.3.0, the error has gone.

wltj920 commented 3 years ago

Do you set the instance ephemeral is false?

I don't know how or where to set it?

KomachiSion commented 3 years ago

Can you provider a simple example codes in github? remove all business codes, just only register one service and failed like above example codes.

We want to reproduce this problem.

wltj920 commented 3 years ago

Can you provider a simple example codes in github? remove all business codes, just only register one service and failed like above example codes.

We want to reproduce this problem.

I reproduce this problem in my own github repository, you can clone it by steps:

  1. Clone the repository
  2. Download a nacos zip package
  3. Unzip the package and edit nacos/conf/application.properties, set nacos.core.auth.enabled=true
  4. Edit nacos/bin/startup.cmd, set line 26 MODE="standalone"
  5. Double click startup.cmd to start nacos
  6. Use default username and password to login nacos.
  7. Create a namespace named debugger
  8. Create config file common-web-dev.yml from github repository into config center, the group use default.
  9. Start the project local host.
  10. See error in console.
horizonzy commented 3 years ago

Can you provider a simple example codes in github? remove all business codes, just only register one service and failed like above example codes. We want to reproduce this problem.

I reproduce this problem in my own github repository, you can clone it by steps:

  1. Clone the repository
  2. Download a nacos zip package
  3. Unzip the package and edit nacos/conf/application.properties, set nacos.core.auth.enabled=true
  4. Edit nacos/bin/startup.cmd, set line 26 MODE="standalone"
  5. Double click startup.cmd to start nacos
  6. Use default username and password to login nacos.
  7. Create a namespace named *debugger
  8. Create config file common-web-dev.yml from github repository into config center, the group use default.
  9. Start the project local host.
  10. See error in console.

ok. I will have a try.

horizonzy commented 3 years ago

I have operated as you say. But it run normally.

nacos-console server list: image

console log:

/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:64710,suspend=y,server=n -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:/Users/apple/Library/Caches/IntelliJIdea2019.2/captureAgent/debugger-agent.jar -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/tools.jar:/Users/apple/Downloads/nacos-debug-main/target/classes:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-discovery/2.2.4.RELEASE/spring-cloud-starter-alibaba-nacos-discovery-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-client/1.4.1/nacos-client-1.4.1.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-common/1.4.1/nacos-common-1.4.1.jar:/Users/apple/.m2/repository/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar:/Users/apple/.m2/repository/commons-io/commons-io/2.2/commons-io-2.2.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpcore-nio/4.4.14/httpcore-nio-4.4.14.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-api/1.4.1/nacos-api-1.4.1.jar:/Users/apple/.m2/repository/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar:/Users/apple/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/Users/apple/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/apple/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar:/Users/apple/.m2/repository/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar:/Users/apple/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar:/Users/apple/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar:/Users/apple/.m2/repository/commons-codec/commons-codec/1.14/commons-codec-1.14.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.11.4/jackson-core-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.11.4/jackson-databind-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.11.4/jackson-annotations-2.11.4.jar:/Users/apple/.m2/repository/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.jar:/Users/apple/.m2/repository/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar:/Users/apple/.m2/repository/com/alibaba/spring/spring-context-support/1.0.10/spring-context-support-1.0.10.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-commons/2.2.5.RELEASE/spring-cloud-commons-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/security/spring-security-crypto/5.3.6.RELEASE/spring-security-crypto-5.3.6.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-context/2.2.5.RELEASE/spring-cloud-context-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter-netflix-ribbon/2.2.5.RELEASE/spring-cloud-starter-netflix-ribbon-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter/2.2.5.RELEASE/spring-cloud-starter-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/security/spring-security-rsa/1.0.9.RELEASE/spring-security-rsa-1.0.9.RELEASE.jar:/Users/apple/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.64/bcpkix-jdk15on-1.64.jar:/Users/apple/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-netflix-ribbon/2.2.5.RELEASE/spring-cloud-netflix-ribbon-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-netflix-archaius/2.2.5.RELEASE/spring-cloud-netflix-archaius-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter-netflix-archaius/2.2.5.RELEASE/spring-cloud-starter-netflix-archaius-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/com/netflix/archaius/archaius-core/0.7.6/archaius-core-0.7.6.jar:/Users/apple/.m2/repository/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon/2.3.0/ribbon-2.3.0.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-transport/2.3.0/ribbon-transport-2.3.0.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.jar:/Users/apple/.m2/repository/com/netflix/hystrix/hystrix-core/1.5.18/hystrix-core-1.5.18.jar:/Users/apple/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar:/Users/apple/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-core/2.3.0/ribbon-core-2.3.0.jar:/Users/apple/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-httpclient/2.3.0/ribbon-httpclient-2.3.0.jar:/Users/apple/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/apple/.m2/repository/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.jar:/Users/apple/.m2/repository/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.jar:/Users/apple/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/Users/apple/.m2/repository/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.jar:/Users/apple/.m2/repository/com/netflix/servo/servo-core/0.12.21/servo-core-0.12.21.jar:/Users/apple/.m2/repository/com/netflix/netflix-commons/netflix-commons-util/0.3.0/netflix-commons-util-0.3.0.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-loadbalancer/2.3.0/ribbon-loadbalancer-2.3.0.jar:/Users/apple/.m2/repository/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.jar:/Users/apple/.m2/repository/io/reactivex/rxjava/1.3.8/rxjava-1.3.8.jar:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-config/2.2.4.RELEASE/spring-cloud-starter-alibaba-nacos-config-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-dubbo/2.2.4.RELEASE/spring-cloud-starter-dubbo-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-openfeign-core/2.2.5.RELEASE/spring-cloud-openfeign-core-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.3.8.RELEASE/spring-boot-autoconfigure-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.3.8.RELEASE/spring-boot-starter-aop-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/apple/.m2/repository/io/github/openfeign/form/feign-form-spring/3.8.0/feign-form-spring-3.8.0.jar:/Users/apple/.m2/repository/io/github/openfeign/form/feign-form/3.8.0/feign-form-3.8.0.jar:/Users/apple/.m2/repository/commons-fileupload/commons-fileupload/1.4/commons-fileupload-1.4.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo/2.7.8/dubbo-2.7.8.jar:/Users/apple/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/apple/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar:/Users/apple/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-starter/2.7.8/dubbo-spring-boot-starter-2.7.8.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-autoconfigure/2.7.8/dubbo-spring-boot-autoconfigure-2.7.8.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-autoconfigure-compatible/2.7.8/dubbo-spring-boot-autoconfigure-compatible-2.7.8.jar:/Users/apple/.m2/repository/io/netty/netty-all/4.1.58.Final/netty-all-4.1.58.Final.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-jaxrs2/9.7.0/feign-jaxrs2-9.7.0.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-core/10.10.1/feign-core-10.10.1.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-jaxrs/10.10.1/feign-jaxrs-10.10.1.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.3.8.RELEASE/spring-boot-starter-web-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter/2.3.8.RELEASE/spring-boot-starter-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot/2.3.8.RELEASE/spring-boot-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.3.8.RELEASE/spring-boot-starter-logging-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/apple/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/apple/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar:/Users/apple/.m2/repository/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar:/Users/apple/.m2/repository/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar:/Users/apple/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/apple/.m2/repository/org/springframework/spring-core/5.2.12.RELEASE/spring-core-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-jcl/5.2.12.RELEASE/spring-jcl-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.3.8.RELEASE/spring-boot-starter-json-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.4/jackson-datatype-jdk8-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.11.4/jackson-datatype-jsr310-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.4/jackson-module-parameter-names-2.11.4.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.3.8.RELEASE/spring-boot-starter-tomcat-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.41/tomcat-embed-core-9.0.41.jar:/Users/apple/.m2/repository/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar:/Users/apple/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.41/tomcat-embed-websocket-9.0.41.jar:/Users/apple/.m2/repository/org/springframework/spring-web/5.2.12.RELEASE/spring-web-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-beans/5.2.12.RELEASE/spring-beans-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-webmvc/5.2.12.RELEASE/spring-webmvc-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-aop/5.2.12.RELEASE/spring-aop-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-context/5.2.12.RELEASE/spring-context-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-expression/5.2.12.RELEASE/spring-expression-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-configuration-processor/2.3.8.RELEASE/spring-boot-configuration-processor-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/apache/commons/commons-lang3/3.10/commons-lang3-3.10.jar:/Users/apple/.m2/repository/org/projectlombok/lombok/1.18.16/lombok-1.18.16.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar" com.github.wltj920.NacosDebuggerApplication
Connected to the target VM, address: '127.0.0.1:64710', transport: 'socket'
2021-02-01 12:41:39.667  INFO 7842 --- [           main] o.a.dubbo.common.logger.LoggerFactory    : using logger: org.apache.dubbo.common.logger.slf4j.Slf4jLoggerAdapter
2021-02-01 12:41:39.674  INFO 7842 --- [           main] d.s.b.c.e.WelcomeLogoApplicationListener : 

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

2021-02-01 12:41:39.676  INFO 7842 --- [           main] e.OverrideDubboConfigApplicationListener : Dubbo Config was overridden by externalized configuration {dubbo.application.name=nacos-debugger, dubbo.application.qos-enable=false, dubbo.cloud.subscribed-services=, dubbo.config.multiple=true, dubbo.consumer.check=false, dubbo.protocol.name=dubbo, dubbo.protocol.port=-1, dubbo.provider.token=true, dubbo.registry.address=nacos://localhost:8848?username=nacos&password=nacos, dubbo.registry.check=false, dubbo.registry.parameters.group=DUBBO, dubbo.registry.parameters.namespace=debugger, dubbo.registry.use-as-config-center=false, dubbo.registry.use-as-metadata-center=false, dubbo.scan.base-packages=com.github.wltj920.service}
2021-02-01 12:41:40.540  INFO 7842 --- [pool-1-thread-1] .b.c.e.AwaitingNonWebApplicationListener :  [Dubbo] Current Spring Boot Application is await...
2021-02-01 12:41:40.585  INFO 7842 --- [           main] e.OverrideDubboConfigApplicationListener : Dubbo Config was overridden by externalized configuration {dubbo.application.name=nacos-debugger, dubbo.application.qos-enable=false, dubbo.cloud.subscribed-services=, dubbo.config.multiple=true, dubbo.consumer.check=false, dubbo.protocol.name=dubbo, dubbo.protocol.port=-1, dubbo.provider.token=true, dubbo.registry.address=nacos://localhost:8848?username=nacos&password=nacos, dubbo.registry.check=false, dubbo.registry.parameters.group=DUBBO, dubbo.registry.parameters.namespace=debugger, dubbo.registry.use-as-config-center=false, dubbo.registry.use-as-metadata-center=false, dubbo.scan.base-packages=com.github.wltj920.service}

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

2021-02-01 12:41:40.608  INFO 7842 --- [           main] c.a.n.c.c.impl.LocalConfigInfoProcessor  : LOCAL_SNAPSHOT_PATH:/Users/apple/nacos/config
2021-02-01 12:41:40.625  WARN 7842 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[common-web-dev.yml] & group[DEFAULT_GROUP]
2021-02-01 12:41:40.631  WARN 7842 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger] & group[DEFAULT_GROUP]
2021-02-01 12:41:40.635  WARN 7842 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger.yml] & group[DEFAULT_GROUP]
2021-02-01 12:41:40.639  WARN 7842 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger-dev.yml] & group[DEFAULT_GROUP]
2021-02-01 12:41:40.641  INFO 7842 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-nacos-debugger-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-nacos-debugger.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-nacos-debugger,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-web-dev.yml,DEFAULT_GROUP'}]
2021-02-01 12:41:40.646  INFO 7842 --- [           main] c.g.wltj920.NacosDebuggerApplication     : The following profiles are active: dev
2021-02-01 12:41:41.042  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [referenceAnnotationBeanPostProcessor] has been registered.
2021-02-01 12:41:41.042  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.annotation.DubboConfigAliasPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboConfigAliasPostProcessor] has been registered.
2021-02-01 12:41:41.043  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboLifecycleComponentApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboLifecycleComponentApplicationListener] has been registered.
2021-02-01 12:41:41.043  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboBootstrapApplicationListener] has been registered.
2021-02-01 12:41:41.043  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.config.DubboConfigDefaultPropertyValueBeanPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboConfigDefaultPropertyValueBeanPostProcessor] has been registered.
2021-02-01 12:41:41.100  INFO 7842 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ApplicationConfig#0, content : Root bean: class [org.apache.dubbo.config.ApplicationConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 12:41:41.100  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [com.alibaba.spring.beans.factory.annotation.ConfigurationBeanBindingPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [configurationBeanBindingPostProcessor] has been registered.
2021-02-01 12:41:41.100  INFO 7842 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.RegistryConfig#0, content : Root bean: class [org.apache.dubbo.config.RegistryConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 12:41:41.100  INFO 7842 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ProtocolConfig#0, content : Root bean: class [org.apache.dubbo.config.ProtocolConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 12:41:41.101  INFO 7842 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ProviderConfig#0, content : Root bean: class [org.apache.dubbo.config.ProviderConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 12:41:41.101  INFO 7842 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ConsumerConfig#0, content : Root bean: class [org.apache.dubbo.config.ConsumerConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 12:41:41.153  INFO 7842 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboBootstrapApplicationListener] has been registered.
2021-02-01 12:41:41.158  INFO 7842 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:41.158  INFO 7842 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:41.167  INFO 7842 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] The BeanDefinition[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] of ServiceBean has been registered with name : ServiceBean:com.github.wltj920.service.rpc.RpcUserService:1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:41.167  INFO 7842 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] 1 annotated Dubbo's @Service Components { [Bean definition with name 'rpcUserServiceImpl': Generic bean: class [com.github.wltj920.service.rpc.impl.RpcUserServiceImpl]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/apple/Downloads/nacos-debug-main/target/classes/com/github/wltj920/service/rpc/impl/RpcUserServiceImpl.class]] } were scanned under package[com.github.wltj920.service], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:41.169  INFO 7842 --- [           main] o.s.c.a.ConfigurationClassPostProcessor  : Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboRelaxedBinding2AutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2021-02-01 12:41:41.169  INFO 7842 --- [           main] o.s.c.a.ConfigurationClassPostProcessor  : Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2021-02-01 12:41:41.236  INFO 7842 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=2c22a07d-a5c9-3061-aaa7-a17b38a3d20a
2021-02-01 12:41:41.370  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboOpenFeignAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboOpenFeignAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.439  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubbo.cloud-com.alibaba.cloud.dubbo.env.DubboCloudProperties' of type [com.alibaba.cloud.dubbo.env.DubboCloudProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.442  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboServiceAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboServiceAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.445  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubboGenericServiceFactory' of type [com.alibaba.cloud.dubbo.service.DubboGenericServiceFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.449  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.util.JSONUtils' of type [com.alibaba.cloud.dubbo.util.JSONUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.452  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.util.DubboMetadataUtils' of type [com.alibaba.cloud.dubbo.util.DubboMetadataUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.462  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'metadataJsonResolver' of type [com.alibaba.cloud.dubbo.metadata.resolver.DubboServiceBeanMetadataResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.477  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'relaxedDubboConfigBinder' of type [org.apache.dubbo.spring.boot.autoconfigure.BinderDubboConfigBinder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.480  INFO 7842 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:application qosEnable="false" hostname="Horizon-3.local" name="nacos-debugger" />] have been binding by the configuration properties [{name=nacos-debugger, qos-enable=false}]
2021-02-01 12:41:41.481  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.dubbo.config.ApplicationConfig#0' of type [org.apache.dubbo.config.ApplicationConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.486  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubboProtocolConfigSupplier' of type [com.alibaba.cloud.dubbo.metadata.DubboProtocolConfigSupplier] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.488  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboMetadataServiceExporter' of type [com.alibaba.cloud.dubbo.service.DubboMetadataServiceExporter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.489  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboMetadataAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboMetadataAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.491  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'metadataServiceInstanceSelector' of type [com.alibaba.cloud.dubbo.metadata.repository.RandomServiceInstanceSelector] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.494  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration' of type [org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.496  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.discovery.NacosDiscoveryClientConfiguration' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryClientConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.499  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.discovery.NacosDiscoveryAutoConfiguration' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.507  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.commons.util.UtilAutoConfiguration' of type [org.springframework.cloud.commons.util.UtilAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.513  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'inetUtilsProperties' of type [org.springframework.cloud.commons.util.InetUtilsProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.515  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'inetUtils' of type [org.springframework.cloud.commons.util.InetUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.519  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.NacosServiceAutoConfiguration' of type [com.alibaba.cloud.nacos.NacosServiceAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.521  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosServiceManager' of type [com.alibaba.cloud.nacos.NacosServiceManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.526  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosProperties' of type [com.alibaba.cloud.nacos.NacosDiscoveryProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.530  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosServiceDiscovery' of type [com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.534  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosDiscoveryClient' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.551  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' of type [org.springframework.boot.autoconfigure.web.ServerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.552  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.559  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'simpleDiscoveryProperties' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.563  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'simpleDiscoveryClient' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.568  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'compositeDiscoveryClient' of type [org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.571  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboMetadataServiceProxy' of type [com.alibaba.cloud.dubbo.service.DubboMetadataServiceProxy] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.576  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.metadata.repository.DubboServiceMetadataRepository' of type [com.alibaba.cloud.dubbo.metadata.repository.DubboServiceMetadataRepository] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.588  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestParamServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestParamServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.599  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' of type [org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.604  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' of type [org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.615  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'stringHttpMessageConverter' of type [org.springframework.http.converter.StringHttpMessageConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.618  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' of type [org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.621  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.623  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.626  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.632  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' of type [org.springframework.boot.autoconfigure.jackson.JacksonProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.636  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'standardJacksonObjectMapperBuilderCustomizer' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$StandardJackson2ObjectMapperBuilderCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.639  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.651  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'parameterNamesModule' of type [com.fasterxml.jackson.module.paramnames.ParameterNamesModule] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.654  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.663  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jsonComponentModule' of type [org.springframework.boot.jackson.JsonComponentModule] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.669  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jacksonObjectMapperBuilder' of type [org.springframework.http.converter.json.Jackson2ObjectMapperBuilder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.696  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jacksonObjectMapper' of type [com.fasterxml.jackson.databind.ObjectMapper] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.705  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'mappingJackson2HttpMessageConverter' of type [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.716  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'messageConverters' of type [org.springframework.boot.autoconfigure.http.HttpMessageConverters] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.719  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestBodyServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestBodyServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.725  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestHeaderServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestHeaderServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.733  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.PathVariableServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.PathVariableServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:41.734  INFO 7842 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboGenericServiceExecutionContextFactory' of type [com.alibaba.cloud.dubbo.service.DubboGenericServiceExecutionContextFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 12:41:42.017  INFO 7842 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8100 (http)
2021-02-01 12:41:42.026  INFO 7842 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2021-02-01 12:41:42.026  INFO 7842 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.41]
2021-02-01 12:41:42.151  INFO 7842 --- [           main] o.a.c.c.C.[.[localhost].[/debugger]      : Initializing Spring embedded WebApplicationContext
2021-02-01 12:41:42.151  INFO 7842 --- [           main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1483 ms
2021-02-01 12:41:42.306  WARN 7842 --- [           main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2021-02-01 12:41:42.306  INFO 7842 --- [           main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-02-01 12:41:42.310  WARN 7842 --- [           main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2021-02-01 12:41:42.310  INFO 7842 --- [           main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-02-01 12:41:42.442  INFO 7842 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2021-02-01 12:41:42.806  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:42.806  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 12:41:42.807  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:42.960  INFO 7842 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService 'taskScheduler'
2021-02-01 12:41:43.094  INFO 7842 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:registry check="false" useAsConfigCenter="false" useAsMetadataCenter="false" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] have been binding by the configuration properties [{address=nacos://localhost:8848?username=nacos&password=nacos, parameters.namespace=debugger, parameters.group=DUBBO, use-as-config-center=false, use-as-metadata-center=false, check=false}]
2021-02-01 12:41:43.099  INFO 7842 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:protocol name="dubbo" port="-1" />] have been binding by the configuration properties [{name=dubbo, port=-1}]
2021-02-01 12:41:43.108  INFO 7842 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:provider />] have been binding by the configuration properties [{token=true}]
2021-02-01 12:41:43.117  INFO 7842 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:consumer />] have been binding by the configuration properties [{check=false}]
2021-02-01 12:41:43.258  INFO 7842 --- [           main] a.c.d.m.r.DubboServiceMetadataRepository : The metadata of Dubbo services has been initialized
2021-02-01 12:41:43.405  INFO 7842 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8100 (http) with context path '/debugger'
2021-02-01 12:41:43.420  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:43.421  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DEFAULT_GROUP@@nacos-debugger with instance: Instance{instanceId='null', ip='localhost', port=8100, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-02-01 12:41:43.633  INFO 7842 --- [           main] c.a.c.n.registry.NacosServiceRegistry    : nacos registry, DEFAULT_GROUP nacos-debugger localhost:8100 register finished
2021-02-01 12:41:43.653  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry check="false" useAsConfigCenter="false" useAsMetadataCenter="false" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] will be not used as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.656  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] No value is configured in the registry, the DynamicConfigurationFactory extension[name : spring-cloud] does not support as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.657  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry address="localhost" protocol="spring-cloud" port="0" />] will be not used as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.679  INFO 7842 --- [           main] o.a.d.c.utils.ConfigValidationUtils      :  [DUBBO] There's no valid monitor config found, if you want to open monitor statistics for Dubbo, please make sure your monitor is configured properly., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.685  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry group="DUBBO" check="false" useAsConfigCenter="false" useAsMetadataCenter="false" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] will be not used as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.688  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] No value is configured in the registry, the MetadataReportFactory extension[name : spring-cloud] does not support as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.689  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry check="false" address="localhost" protocol="spring-cloud" port="0" />] will be not used as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.695  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap has been initialized!, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.696  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap is starting..., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.723  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] No valid ip found from environment, try to find valid host from DNS., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.727  WARN 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.755  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Export dubbo service com.github.wltj920.service.rpc.RpcUserService to local registry url : injvm://127.0.0.1/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.756  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.github.wltj920.service.rpc.RpcUserService url dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0 to registry registry://localhost:8848/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&group=DUBBO&namespace=debugger&password=nacos&pid=7842&qos.enable=false&registry=nacos&release=2.7.8&timestamp=1612154503708&username=nacos, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.771  INFO 7842 --- [           main] o.a.d.qos.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: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.921  INFO 7842 --- [           main] o.a.d.remoting.transport.AbstractServer  :  [DUBBO] Start NettyServer bind /0.0.0.0:20880, export /10.12.217.144:20880, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:43.936  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:43.937  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 12:41:43.937  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:44.033  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.034  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:', cluster='null', metadata={side=provider, methods=getUser, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.github.wltj920.service.rpc.RpcUserService, version=1.0.0, generic=false, revision=1.0.0, token=51b157b0-51be-48cd-8078-ed80eb61ab94, path=com.github.wltj920.service.rpc.RpcUserService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, timestamp=1612154503711}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:44.034  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0: with instance: Instance{instanceId='null', ip='10.12.217.144', port=20880, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='null', serviceName='null', metadata={side=provider, methods=getUser, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.github.wltj920.service.rpc.RpcUserService, version=1.0.0, generic=false, revision=1.0.0, token=51b157b0-51be-48cd-8078-ed80eb61ab94, path=com.github.wltj920.service.rpc.RpcUserService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, timestamp=1612154503711}}
2021-02-01 12:41:44.040  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.052  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, urls: [empty://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.055  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.github.wltj920.service.rpc.RpcUserService url dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0 to registry registry://localhost:9090/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&pid=7842&qos.enable=false&registry=spring-cloud&release=2.7.8&timestamp=1612154503710, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.058  INFO 7842 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.061  INFO 7842 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.083  INFO 7842 --- [           main] m.DynamicConfigurationServiceNameMapping :  [DUBBO] Dubbo service[null] mapped to interface name[com.github.wltj920.service.rpc.RpcUserService]., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.095  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap is ready., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.095  INFO 7842 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap has started., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.100  INFO 7842 --- [           main] c.g.wltj920.NacosDebuggerApplication     : Started NacosDebuggerApplication in 4.79 seconds (JVM running for 5.341)
2021-02-01 12:41:44.113  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] No valid ip found from environment, try to find valid host from DNS., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.119  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Export dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService to local registry url : injvm://127.0.0.1/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.120  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService url dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0 to registry registry://localhost:8848/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&group=DUBBO&namespace=debugger&password=nacos&pid=7842&qos.enable=false&registry=nacos&release=2.7.8&timestamp=1612154504106&username=nacos, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.121  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:44.121  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 12:41:44.121  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 12:41:44.211  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.212  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger', cluster='null', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612154504107}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:44.212  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger with instance: Instance{instanceId='null', ip='10.12.217.144', port=20880, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='null', serviceName='null', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612154504107}}
2021-02-01 12:41:44.218  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.219  INFO 7842 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, urls: [empty://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.222  INFO 7842 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService url dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0 to registry registry://localhost:9090/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&pid=7842&qos.enable=false&registry=spring-cloud&release=2.7.8&timestamp=1612154504107, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.223  INFO 7842 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.225  INFO 7842 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.249  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : new ips(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:44.254  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:44.258  INFO 7842 --- [           main] m.DynamicConfigurationServiceNameMapping :  [DUBBO] Dubbo service[nacos-debugger] mapped to interface name[com.alibaba.cloud.dubbo.service.DubboMetadataService]., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:44.259  INFO 7842 --- [           main] c.a.c.d.s.DubboMetadataServiceExporter   : The Dubbo service[<dubbo:service unexported="false" exported="true" />] has been exported.
2021-02-01 12:41:44.261  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:44.261  INFO 7842 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DEFAULT_GROUP@@nacos-debugger with instance: Instance{instanceId='null', ip='localhost', port=8100, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}}
2021-02-01 12:41:44.265  INFO 7842 --- [           main] c.a.c.n.registry.NacosServiceRegistry    : nacos registry, DEFAULT_GROUP nacos-debugger localhost:8100 register finished
2021-02-01 12:41:44.268  INFO 7842 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger.yml+DEFAULT_GROUP+debugger
2021-02-01 12:41:44.269  INFO 7842 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger.yml, group=DEFAULT_GROUP, cnt=1
2021-02-01 12:41:44.269  INFO 7842 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger+DEFAULT_GROUP+debugger
2021-02-01 12:41:44.269  INFO 7842 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger, group=DEFAULT_GROUP, cnt=1
2021-02-01 12:41:44.269  INFO 7842 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger-dev.yml+DEFAULT_GROUP+debugger
2021-02-01 12:41:44.269  INFO 7842 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-02-01 12:41:44.375  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : new ips(1) service: DEFAULT_GROUP@@nacos-debugger@@DEFAULT -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:44.376  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger@@DEFAULT -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:44.660  INFO 7842 --- [g.push.receiver] com.alibaba.nacos.client.naming          : received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"localhost\",\"port\":8100,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger\",\"metadata\":{\"dubbo.metadata-service.urls\":\"[ \\\"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\\\" ]\",\"dubbo.protocols.dubbo.port\":\"20880\",\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@nacos-debugger\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@nacos-debugger\",\"name\":\"DEFAULT_GROUP@@nacos-debugger\",\"cacheMillis\":10000,\"lastRefTime\":1612154504648,\"checksum\":\"10e2266636fc645fcdb27a0d1dee4376\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":10053942570699} from /127.0.0.1
2021-02-01 12:41:44.663  INFO 7842 --- [g.push.receiver] com.alibaba.nacos.client.naming          : received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"localhost\",\"port\":8100,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger\",\"metadata\":{\"dubbo.metadata-service.urls\":\"[ \\\"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\\\" ]\",\"dubbo.protocols.dubbo.port\":\"20880\",\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@nacos-debugger\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@nacos-debugger\",\"name\":\"DEFAULT_GROUP@@nacos-debugger\",\"cacheMillis\":10000,\"lastRefTime\":1612154504660,\"checksum\":\"10e2266636fc645fcdb27a0d1dee4376\",\"useSpecifiedURL\":false,\"clusters\":\"\",\"env\":\"\",\"metadata\":{}}","lastRefTime":10053942570699} from /127.0.0.1
2021-02-01 12:41:44.664  INFO 7842 --- [g.push.receiver] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:44.665  INFO 7842 --- [g.push.receiver] com.alibaba.nacos.client.naming          : modified ips(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:44.665  INFO 7842 --- [g.push.receiver] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:45.052  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:', cluster='DEFAULT', metadata={side=provider, methods=getUser, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.github.wltj920.service.rpc.RpcUserService, version=1.0.0, generic=false, revision=1.0.0, token=51b157b0-51be-48cd-8078-ed80eb61ab94, path=com.github.wltj920.service.rpc.RpcUserService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, timestamp=1612154503711}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:45.052  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : modified ips(1) service: DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0: -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:","metadata":{"side":"provider","methods":"getUser","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"7842","interface":"com.github.wltj920.service.rpc.RpcUserService","version":"1.0.0","generic":"false","revision":"1.0.0","token":"51b157b0-51be-48cd-8078-ed80eb61ab94","path":"com.github.wltj920.service.rpc.RpcUserService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","timestamp":"1612154503711"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:45.053  INFO 7842 --- [ncesChangeEvent] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0, urls: [empty://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=7842&qos.enable=false&release=2.7.8&revision=1.0.0&side=provider&timestamp=1612154503711&token=51b157b0-51be-48cd-8078-ed80eb61ab94&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:45.053  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : current ips:(1) service: DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0: -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:","metadata":{"side":"provider","methods":"getUser","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"7842","interface":"com.github.wltj920.service.rpc.RpcUserService","version":"1.0.0","generic":"false","revision":"1.0.0","token":"51b157b0-51be-48cd-8078-ed80eb61ab94","path":"com.github.wltj920.service.rpc.RpcUserService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","timestamp":"1612154503711"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:45.224  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger', cluster='DEFAULT', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=7842, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612154504107}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 12:41:45.225  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : modified ips(1) service: DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","metadata":{"side":"provider","methods":"getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"7842","interface":"com.alibaba.cloud.dubbo.service.DubboMetadataService","version":"1.0.0","generic":"false","revision":"2.2.4.RELEASE","token":"d9fca7f9-868f-41c2-9fe9-a083ac57d7be","path":"com.alibaba.cloud.dubbo.service.DubboMetadataService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","group":"nacos-debugger","timestamp":"1612154504107"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 12:41:45.226  INFO 7842 --- [ncesChangeEvent] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0, urls: [empty://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=7842&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612154504107&token=d9fca7f9-868f-41c2-9fe9-a083ac57d7be&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 12:41:45.226  INFO 7842 --- [.naming.updater] com.alibaba.nacos.client.naming          : current ips:(1) service: DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","metadata":{"side":"provider","methods":"getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"7842","interface":"com.alibaba.cloud.dubbo.service.DubboMetadataService","version":"1.0.0","generic":"false","revision":"2.2.4.RELEASE","token":"d9fca7f9-868f-41c2-9fe9-a083ac57d7be","path":"com.alibaba.cloud.dubbo.service.DubboMetadataService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","group":"nacos-debugger","timestamp":"1612154504107"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
horizonzy commented 3 years ago

The difference operation is that I use macOs, I start the nacos-server in sh startup.sh -m standalone;

horizonzy commented 3 years ago

Can you start nacos-server with startup.cmd -m standalone, don't modify the startup script.

wltj920 commented 3 years ago

@horizonzy The error only appear on first start. you can change the dubbo service version to reproduce it.

@DubboService(version = "1.0.1")
public class RpcUserServiceImpl implements RpcUserService {

}
wltj920 commented 3 years ago

Can you start nacos-server with startup.cmd -m standalone, don't modify the startup script.

image

horizonzy commented 3 years ago
@DubboService(version = "1.0.1")
public class RpcUserServiceImpl implements RpcUserService {

}

It's still run normally.

image

/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:52830,suspend=y,server=n -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:/Users/apple/Library/Caches/IntelliJIdea2019.2/captureAgent/debugger-agent.jar -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/lib/tools.jar:/Users/apple/Downloads/nacos-debug-main/target/classes:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-discovery/2.2.4.RELEASE/spring-cloud-starter-alibaba-nacos-discovery-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-client/1.4.1/nacos-client-1.4.1.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-common/1.4.1/nacos-common-1.4.1.jar:/Users/apple/.m2/repository/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar:/Users/apple/.m2/repository/commons-io/commons-io/2.2/commons-io-2.2.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpcore-nio/4.4.14/httpcore-nio-4.4.14.jar:/Users/apple/.m2/repository/com/alibaba/nacos/nacos-api/1.4.1/nacos-api-1.4.1.jar:/Users/apple/.m2/repository/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar:/Users/apple/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/Users/apple/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/apple/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar:/Users/apple/.m2/repository/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar:/Users/apple/.m2/repository/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar:/Users/apple/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar:/Users/apple/.m2/repository/commons-codec/commons-codec/1.14/commons-codec-1.14.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.11.4/jackson-core-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.11.4/jackson-databind-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.11.4/jackson-annotations-2.11.4.jar:/Users/apple/.m2/repository/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.jar:/Users/apple/.m2/repository/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar:/Users/apple/.m2/repository/com/alibaba/spring/spring-context-support/1.0.10/spring-context-support-1.0.10.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-commons/2.2.5.RELEASE/spring-cloud-commons-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/security/spring-security-crypto/5.3.6.RELEASE/spring-security-crypto-5.3.6.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-context/2.2.5.RELEASE/spring-cloud-context-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter-netflix-ribbon/2.2.5.RELEASE/spring-cloud-starter-netflix-ribbon-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter/2.2.5.RELEASE/spring-cloud-starter-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/security/spring-security-rsa/1.0.9.RELEASE/spring-security-rsa-1.0.9.RELEASE.jar:/Users/apple/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.64/bcpkix-jdk15on-1.64.jar:/Users/apple/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-netflix-ribbon/2.2.5.RELEASE/spring-cloud-netflix-ribbon-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-netflix-archaius/2.2.5.RELEASE/spring-cloud-netflix-archaius-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-starter-netflix-archaius/2.2.5.RELEASE/spring-cloud-starter-netflix-archaius-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/com/netflix/archaius/archaius-core/0.7.6/archaius-core-0.7.6.jar:/Users/apple/.m2/repository/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon/2.3.0/ribbon-2.3.0.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-transport/2.3.0/ribbon-transport-2.3.0.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.jar:/Users/apple/.m2/repository/com/netflix/hystrix/hystrix-core/1.5.18/hystrix-core-1.5.18.jar:/Users/apple/.m2/repository/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar:/Users/apple/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/apple/.m2/repository/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-core/2.3.0/ribbon-core-2.3.0.jar:/Users/apple/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-httpclient/2.3.0/ribbon-httpclient-2.3.0.jar:/Users/apple/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/Users/apple/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/apple/.m2/repository/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.jar:/Users/apple/.m2/repository/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.jar:/Users/apple/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/Users/apple/.m2/repository/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.jar:/Users/apple/.m2/repository/com/netflix/servo/servo-core/0.12.21/servo-core-0.12.21.jar:/Users/apple/.m2/repository/com/netflix/netflix-commons/netflix-commons-util/0.3.0/netflix-commons-util-0.3.0.jar:/Users/apple/.m2/repository/com/netflix/ribbon/ribbon-loadbalancer/2.3.0/ribbon-loadbalancer-2.3.0.jar:/Users/apple/.m2/repository/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.jar:/Users/apple/.m2/repository/io/reactivex/rxjava/1.3.8/rxjava-1.3.8.jar:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-config/2.2.4.RELEASE/spring-cloud-starter-alibaba-nacos-config-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/com/alibaba/cloud/spring-cloud-starter-dubbo/2.2.4.RELEASE/spring-cloud-starter-dubbo-2.2.4.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/cloud/spring-cloud-openfeign-core/2.2.5.RELEASE/spring-cloud-openfeign-core-2.2.5.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.3.8.RELEASE/spring-boot-autoconfigure-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-aop/2.3.8.RELEASE/spring-boot-starter-aop-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar:/Users/apple/.m2/repository/io/github/openfeign/form/feign-form-spring/3.8.0/feign-form-spring-3.8.0.jar:/Users/apple/.m2/repository/io/github/openfeign/form/feign-form/3.8.0/feign-form-3.8.0.jar:/Users/apple/.m2/repository/commons-fileupload/commons-fileupload/1.4/commons-fileupload-1.4.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo/2.7.8/dubbo-2.7.8.jar:/Users/apple/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/apple/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar:/Users/apple/.m2/repository/com/alibaba/fastjson/1.2.70/fastjson-1.2.70.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-starter/2.7.8/dubbo-spring-boot-starter-2.7.8.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-autoconfigure/2.7.8/dubbo-spring-boot-autoconfigure-2.7.8.jar:/Users/apple/.m2/repository/org/apache/dubbo/dubbo-spring-boot-autoconfigure-compatible/2.7.8/dubbo-spring-boot-autoconfigure-compatible-2.7.8.jar:/Users/apple/.m2/repository/io/netty/netty-all/4.1.58.Final/netty-all-4.1.58.Final.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-jaxrs2/9.7.0/feign-jaxrs2-9.7.0.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-core/10.10.1/feign-core-10.10.1.jar:/Users/apple/.m2/repository/io/github/openfeign/feign-jaxrs/10.10.1/feign-jaxrs-10.10.1.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.3.8.RELEASE/spring-boot-starter-web-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter/2.3.8.RELEASE/spring-boot-starter-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot/2.3.8.RELEASE/spring-boot-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.3.8.RELEASE/spring-boot-starter-logging-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/apple/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/apple/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar:/Users/apple/.m2/repository/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar:/Users/apple/.m2/repository/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar:/Users/apple/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/Users/apple/.m2/repository/org/springframework/spring-core/5.2.12.RELEASE/spring-core-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-jcl/5.2.12.RELEASE/spring-jcl-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.3.8.RELEASE/spring-boot-starter-json-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.4/jackson-datatype-jdk8-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.11.4/jackson-datatype-jsr310-2.11.4.jar:/Users/apple/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.4/jackson-module-parameter-names-2.11.4.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.3.8.RELEASE/spring-boot-starter-tomcat-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.41/tomcat-embed-core-9.0.41.jar:/Users/apple/.m2/repository/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar:/Users/apple/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.41/tomcat-embed-websocket-9.0.41.jar:/Users/apple/.m2/repository/org/springframework/spring-web/5.2.12.RELEASE/spring-web-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-beans/5.2.12.RELEASE/spring-beans-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-webmvc/5.2.12.RELEASE/spring-webmvc-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-aop/5.2.12.RELEASE/spring-aop-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-context/5.2.12.RELEASE/spring-context-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/spring-expression/5.2.12.RELEASE/spring-expression-5.2.12.RELEASE.jar:/Users/apple/.m2/repository/org/springframework/boot/spring-boot-configuration-processor/2.3.8.RELEASE/spring-boot-configuration-processor-2.3.8.RELEASE.jar:/Users/apple/.m2/repository/org/apache/commons/commons-lang3/3.10/commons-lang3-3.10.jar:/Users/apple/.m2/repository/org/projectlombok/lombok/1.18.16/lombok-1.18.16.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar" com.github.wltj920.NacosDebuggerApplication
Connected to the target VM, address: '127.0.0.1:52830', transport: 'socket'
2021-02-01 13:08:02.346  INFO 8364 --- [           main] o.a.dubbo.common.logger.LoggerFactory    : using logger: org.apache.dubbo.common.logger.slf4j.Slf4jLoggerAdapter
2021-02-01 13:08:02.356  INFO 8364 --- [           main] d.s.b.c.e.WelcomeLogoApplicationListener : 

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

2021-02-01 13:08:02.359  INFO 8364 --- [           main] e.OverrideDubboConfigApplicationListener : Dubbo Config was overridden by externalized configuration {dubbo.application.name=nacos-debugger, dubbo.application.qos-enable=false, dubbo.cloud.subscribed-services=, dubbo.config.multiple=true, dubbo.consumer.check=false, dubbo.protocol.name=dubbo, dubbo.protocol.port=-1, dubbo.provider.token=true, dubbo.registry.address=nacos://localhost:8848?username=nacos&password=nacos, dubbo.registry.check=false, dubbo.registry.parameters.group=DUBBO, dubbo.registry.parameters.namespace=debugger, dubbo.registry.use-as-config-center=false, dubbo.registry.use-as-metadata-center=false, dubbo.scan.base-packages=com.github.wltj920.service}
2021-02-01 13:08:03.124  INFO 8364 --- [pool-1-thread-1] .b.c.e.AwaitingNonWebApplicationListener :  [Dubbo] Current Spring Boot Application is await...
2021-02-01 13:08:03.165  INFO 8364 --- [           main] e.OverrideDubboConfigApplicationListener : Dubbo Config was overridden by externalized configuration {dubbo.application.name=nacos-debugger, dubbo.application.qos-enable=false, dubbo.cloud.subscribed-services=, dubbo.config.multiple=true, dubbo.consumer.check=false, dubbo.protocol.name=dubbo, dubbo.protocol.port=-1, dubbo.provider.token=true, dubbo.registry.address=nacos://localhost:8848?username=nacos&password=nacos, dubbo.registry.check=false, dubbo.registry.parameters.group=DUBBO, dubbo.registry.parameters.namespace=debugger, dubbo.registry.use-as-config-center=false, dubbo.registry.use-as-metadata-center=false, dubbo.scan.base-packages=com.github.wltj920.service}

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

2021-02-01 13:08:03.187  INFO 8364 --- [           main] c.a.n.c.c.impl.LocalConfigInfoProcessor  : LOCAL_SNAPSHOT_PATH:/Users/apple/nacos/config
2021-02-01 13:08:03.201  WARN 8364 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[common-web-dev.yml] & group[DEFAULT_GROUP]
2021-02-01 13:08:03.204  WARN 8364 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger] & group[DEFAULT_GROUP]
2021-02-01 13:08:03.207  WARN 8364 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger.yml] & group[DEFAULT_GROUP]
2021-02-01 13:08:03.209  WARN 8364 --- [           main] c.a.c.n.c.NacosPropertySourceBuilder     : Ignore the empty nacos configuration and get it based on dataId[nacos-debugger-dev.yml] & group[DEFAULT_GROUP]
2021-02-01 13:08:03.210  INFO 8364 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-nacos-debugger-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-nacos-debugger.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-nacos-debugger,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-web-dev.yml,DEFAULT_GROUP'}]
2021-02-01 13:08:03.214  INFO 8364 --- [           main] c.g.wltj920.NacosDebuggerApplication     : The following profiles are active: dev
2021-02-01 13:08:03.707  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [referenceAnnotationBeanPostProcessor] has been registered.
2021-02-01 13:08:03.708  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.annotation.DubboConfigAliasPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboConfigAliasPostProcessor] has been registered.
2021-02-01 13:08:03.708  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboLifecycleComponentApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboLifecycleComponentApplicationListener] has been registered.
2021-02-01 13:08:03.709  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboBootstrapApplicationListener] has been registered.
2021-02-01 13:08:03.710  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.beans.factory.config.DubboConfigDefaultPropertyValueBeanPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboConfigDefaultPropertyValueBeanPostProcessor] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ApplicationConfig#0, content : Root bean: class [org.apache.dubbo.config.ApplicationConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [com.alibaba.spring.beans.factory.annotation.ConfigurationBeanBindingPostProcessor]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [configurationBeanBindingPostProcessor] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.RegistryConfig#0, content : Root bean: class [org.apache.dubbo.config.RegistryConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ProtocolConfig#0, content : Root bean: class [org.apache.dubbo.config.ProtocolConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ProviderConfig#0, content : Root bean: class [org.apache.dubbo.config.ProviderConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 13:08:03.785  INFO 8364 --- [           main] .b.f.a.ConfigurationBeanBindingRegistrar : The configuration bean definition [name : org.apache.dubbo.config.ConsumerConfig#0, content : Root bean: class [org.apache.dubbo.config.ConsumerConfig]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] has been registered.
2021-02-01 13:08:03.846  INFO 8364 --- [           main] com.alibaba.spring.util.BeanRegistrar    : The Infrastructure bean definition [Root bean: class [org.apache.dubbo.config.spring.context.DubboBootstrapApplicationListener]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=nullwith name [dubboBootstrapApplicationListener] has been registered.
2021-02-01 13:08:03.852  INFO 8364 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:03.852  INFO 8364 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:03.862  INFO 8364 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] The BeanDefinition[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] of ServiceBean has been registered with name : ServiceBean:com.github.wltj920.service.rpc.RpcUserService:1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:03.862  INFO 8364 --- [           main] .a.d.c.s.b.f.a.ServiceClassPostProcessor :  [DUBBO] 1 annotated Dubbo's @Service Components { [Bean definition with name 'rpcUserServiceImpl': Generic bean: class [com.github.wltj920.service.rpc.impl.RpcUserServiceImpl]; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/apple/Downloads/nacos-debug-main/target/classes/com/github/wltj920/service/rpc/impl/RpcUserServiceImpl.class]] } were scanned under package[com.github.wltj920.service], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:03.863  INFO 8364 --- [           main] o.s.c.a.ConfigurationClassPostProcessor  : Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboRelaxedBinding2AutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2021-02-01 13:08:03.864  INFO 8364 --- [           main] o.s.c.a.ConfigurationClassPostProcessor  : Cannot enhance @Configuration bean definition 'org.apache.dubbo.spring.boot.autoconfigure.DubboAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2021-02-01 13:08:03.953  INFO 8364 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=23efac2d-9bc8-313f-a556-206f95d02b0f
2021-02-01 13:08:04.101  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboOpenFeignAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboOpenFeignAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.181  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubbo.cloud-com.alibaba.cloud.dubbo.env.DubboCloudProperties' of type [com.alibaba.cloud.dubbo.env.DubboCloudProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.184  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboServiceAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboServiceAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.187  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubboGenericServiceFactory' of type [com.alibaba.cloud.dubbo.service.DubboGenericServiceFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.190  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.util.JSONUtils' of type [com.alibaba.cloud.dubbo.util.JSONUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.192  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.util.DubboMetadataUtils' of type [com.alibaba.cloud.dubbo.util.DubboMetadataUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.202  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'metadataJsonResolver' of type [com.alibaba.cloud.dubbo.metadata.resolver.DubboServiceBeanMetadataResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.216  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'relaxedDubboConfigBinder' of type [org.apache.dubbo.spring.boot.autoconfigure.BinderDubboConfigBinder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.219  INFO 8364 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:application hostname="Horizon-3.local" name="nacos-debugger" qosEnable="false" />] have been binding by the configuration properties [{name=nacos-debugger, qos-enable=false}]
2021-02-01 13:08:04.221  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.dubbo.config.ApplicationConfig#0' of type [org.apache.dubbo.config.ApplicationConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.225  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dubboProtocolConfigSupplier' of type [com.alibaba.cloud.dubbo.metadata.DubboProtocolConfigSupplier] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.227  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboMetadataServiceExporter' of type [com.alibaba.cloud.dubbo.service.DubboMetadataServiceExporter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.227  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.autoconfigure.DubboMetadataAutoConfiguration' of type [com.alibaba.cloud.dubbo.autoconfigure.DubboMetadataAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.230  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'metadataServiceInstanceSelector' of type [com.alibaba.cloud.dubbo.metadata.repository.RandomServiceInstanceSelector] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.232  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration' of type [org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.235  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.discovery.NacosDiscoveryClientConfiguration' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryClientConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.237  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.discovery.NacosDiscoveryAutoConfiguration' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.244  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.commons.util.UtilAutoConfiguration' of type [org.springframework.cloud.commons.util.UtilAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.250  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'inetUtilsProperties' of type [org.springframework.cloud.commons.util.InetUtilsProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.252  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'inetUtils' of type [org.springframework.cloud.commons.util.InetUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.255  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.nacos.NacosServiceAutoConfiguration' of type [com.alibaba.cloud.nacos.NacosServiceAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.258  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosServiceManager' of type [com.alibaba.cloud.nacos.NacosServiceManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.263  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosProperties' of type [com.alibaba.cloud.nacos.NacosDiscoveryProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.267  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosServiceDiscovery' of type [com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.270  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'nacosDiscoveryClient' of type [com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.287  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' of type [org.springframework.boot.autoconfigure.web.ServerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.288  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.295  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'simpleDiscoveryProperties' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.298  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'simpleDiscoveryClient' of type [org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.303  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'compositeDiscoveryClient' of type [org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.306  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboMetadataServiceProxy' of type [com.alibaba.cloud.dubbo.service.DubboMetadataServiceProxy] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.309  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.metadata.repository.DubboServiceMetadataRepository' of type [com.alibaba.cloud.dubbo.metadata.repository.DubboServiceMetadataRepository] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.321  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestParamServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestParamServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.329  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' of type [org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.333  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' of type [org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.341  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'stringHttpMessageConverter' of type [org.springframework.http.converter.StringHttpMessageConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.343  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' of type [org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.345  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.347  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.349  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.354  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' of type [org.springframework.boot.autoconfigure.jackson.JacksonProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.356  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'standardJacksonObjectMapperBuilderCustomizer' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$StandardJackson2ObjectMapperBuilderCustomizer] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.359  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.370  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'parameterNamesModule' of type [com.fasterxml.jackson.module.paramnames.ParameterNamesModule] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.372  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' of type [org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.378  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jsonComponentModule' of type [org.springframework.boot.jackson.JsonComponentModule] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.383  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jacksonObjectMapperBuilder' of type [org.springframework.http.converter.json.Jackson2ObjectMapperBuilder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.407  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'jacksonObjectMapper' of type [com.fasterxml.jackson.databind.ObjectMapper] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.414  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'mappingJackson2HttpMessageConverter' of type [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.424  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'messageConverters' of type [org.springframework.boot.autoconfigure.http.HttpMessageConverters] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.428  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestBodyServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestBodyServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.433  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.RequestHeaderServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.RequestHeaderServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.439  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.parameter.PathVariableServiceParameterResolver' of type [com.alibaba.cloud.dubbo.service.parameter.PathVariableServiceParameterResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.440  INFO 8364 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.alibaba.cloud.dubbo.service.DubboGenericServiceExecutionContextFactory' of type [com.alibaba.cloud.dubbo.service.DubboGenericServiceExecutionContextFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-02-01 13:08:04.756  INFO 8364 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8100 (http)
2021-02-01 13:08:04.767  INFO 8364 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2021-02-01 13:08:04.768  INFO 8364 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.41]
2021-02-01 13:08:04.907  INFO 8364 --- [           main] o.a.c.c.C.[.[localhost].[/debugger]      : Initializing Spring embedded WebApplicationContext
2021-02-01 13:08:04.908  INFO 8364 --- [           main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1673 ms
2021-02-01 13:08:05.081  WARN 8364 --- [           main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2021-02-01 13:08:05.082  INFO 8364 --- [           main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-02-01 13:08:05.087  WARN 8364 --- [           main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2021-02-01 13:08:05.087  INFO 8364 --- [           main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-02-01 13:08:05.220  INFO 8364 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2021-02-01 13:08:05.616  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:05.616  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 13:08:05.616  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:05.756  INFO 8364 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService 'taskScheduler'
2021-02-01 13:08:05.940  INFO 8364 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:registry check="false" useAsConfigCenter="false" useAsMetadataCenter="false" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] have been binding by the configuration properties [{address=nacos://localhost:8848?username=nacos&password=nacos, parameters.namespace=debugger, parameters.group=DUBBO, use-as-config-center=false, use-as-metadata-center=false, check=false}]
2021-02-01 13:08:05.945  INFO 8364 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:protocol name="dubbo" port="-1" />] have been binding by the configuration properties [{name=dubbo, port=-1}]
2021-02-01 13:08:05.957  INFO 8364 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:provider />] have been binding by the configuration properties [{token=true}]
2021-02-01 13:08:05.966  INFO 8364 --- [           main] .a.ConfigurationBeanBindingPostProcessor : The configuration bean [<dubbo:consumer />] have been binding by the configuration properties [{check=false}]
2021-02-01 13:08:06.110  INFO 8364 --- [           main] a.c.d.m.r.DubboServiceMetadataRepository : The metadata of Dubbo services has been initialized
2021-02-01 13:08:06.253  INFO 8364 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8100 (http) with context path '/debugger'
2021-02-01 13:08:06.268  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:06.269  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DEFAULT_GROUP@@nacos-debugger with instance: Instance{instanceId='null', ip='localhost', port=8100, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-02-01 13:08:06.272  INFO 8364 --- [           main] c.a.c.n.registry.NacosServiceRegistry    : nacos registry, DEFAULT_GROUP nacos-debugger localhost:8100 register finished
2021-02-01 13:08:06.291  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry check="false" useAsConfigCenter="false" useAsMetadataCenter="false" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] will be not used as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.297  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] No value is configured in the registry, the DynamicConfigurationFactory extension[name : spring-cloud] does not support as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.297  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry address="localhost" protocol="spring-cloud" port="0" />] will be not used as the config center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.319  INFO 8364 --- [           main] o.a.d.c.utils.ConfigValidationUtils      :  [DUBBO] There's no valid monitor config found, if you want to open monitor statistics for Dubbo, please make sure your monitor is configured properly., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.324  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry check="false" useAsConfigCenter="false" useAsMetadataCenter="false" group="DUBBO" address="nacos://localhost:8848?username=nacos&password=nacos" protocol="nacos" port="8848" />] will be not used as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.328  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] No value is configured in the registry, the MetadataReportFactory extension[name : spring-cloud] does not support as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.329  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] The registry[<dubbo:registry check="false" address="localhost" protocol="spring-cloud" port="0" />] will be not used as the metadata center, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.335  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap has been initialized!, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.335  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap is starting..., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.362  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] No valid ip found from environment, try to find valid host from DNS., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.367  WARN 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Use random available port(20880) for protocol dubbo, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.397  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Export dubbo service com.github.wltj920.service.rpc.RpcUserService to local registry url : injvm://127.0.0.1/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.398  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.github.wltj920.service.rpc.RpcUserService url dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1 to registry registry://localhost:8848/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&group=DUBBO&namespace=debugger&password=nacos&pid=8364&qos.enable=false&registry=nacos&release=2.7.8&timestamp=1612156086347&username=nacos, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.416  INFO 8364 --- [           main] o.a.d.qos.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: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.633  INFO 8364 --- [           main] o.a.d.remoting.transport.AbstractServer  :  [DUBBO] Start NettyServer bind /0.0.0.0:20880, export /10.12.217.144:20880, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.650  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:06.650  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 13:08:06.650  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:06.737  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.737  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:', cluster='null', metadata={side=provider, methods=getUser, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=8364, interface=com.github.wltj920.service.rpc.RpcUserService, version=1.0.1, generic=false, revision=1.0.1, token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d, path=com.github.wltj920.service.rpc.RpcUserService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, timestamp=1612156086350}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:06.737  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1: with instance: Instance{instanceId='null', ip='10.12.217.144', port=20880, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='null', serviceName='null', metadata={side=provider, methods=getUser, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=8364, interface=com.github.wltj920.service.rpc.RpcUserService, version=1.0.1, generic=false, revision=1.0.1, token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d, path=com.github.wltj920.service.rpc.RpcUserService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, timestamp=1612156086350}}
2021-02-01 13:08:06.741  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.763  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : new ips(1) service: DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1: -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:","metadata":{"side":"provider","methods":"getUser","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"8364","interface":"com.github.wltj920.service.rpc.RpcUserService","version":"1.0.1","generic":"false","revision":"1.0.1","token":"cd77f672-5aeb-4c5f-bfa3-14916c95cb5d","path":"com.github.wltj920.service.rpc.RpcUserService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","timestamp":"1612156086350"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:06.767  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : current ips:(1) service: DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1: -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:","metadata":{"side":"provider","methods":"getUser","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"8364","interface":"com.github.wltj920.service.rpc.RpcUserService","version":"1.0.1","generic":"false","revision":"1.0.1","token":"cd77f672-5aeb-4c5f-bfa3-14916c95cb5d","path":"com.github.wltj920.service.rpc.RpcUserService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","timestamp":"1612156086350"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:06.770  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, urls: [empty://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.773  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.github.wltj920.service.rpc.RpcUserService url dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1 to registry registry://localhost:9090/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&pid=8364&qos.enable=false&registry=spring-cloud&release=2.7.8&timestamp=1612156086349, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.777  INFO 8364 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.779  INFO 8364 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.github.wltj920.service.rpc.RpcUserService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=com.github.wltj920.service.rpc.RpcUserService&methods=getUser&pid=8364&qos.enable=false&release=2.7.8&revision=1.0.1&side=provider&timestamp=1612156086350&token=cd77f672-5aeb-4c5f-bfa3-14916c95cb5d&version=1.0.1, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.800  INFO 8364 --- [           main] m.DynamicConfigurationServiceNameMapping :  [DUBBO] Dubbo service[null] mapped to interface name[com.github.wltj920.service.rpc.RpcUserService]., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.812  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap is ready., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.813  INFO 8364 --- [           main] o.a.d.config.bootstrap.DubboBootstrap    :  [DUBBO] DubboBootstrap has started., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.818  INFO 8364 --- [           main] c.g.wltj920.NacosDebuggerApplication     : Started NacosDebuggerApplication in 4.88 seconds (JVM running for 5.505)
2021-02-01 13:08:06.830  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] No valid ip found from environment, try to find valid host from DNS., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.835  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Export dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService to local registry url : injvm://127.0.0.1/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.836  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService url dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0 to registry registry://localhost:8848/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&group=DUBBO&namespace=debugger&password=nacos&pid=8364&qos.enable=false&registry=nacos&release=2.7.8&timestamp=1612156086824&username=nacos, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.838  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:06.838  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Environment :null
2021-02-01 13:08:06.838  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : initializer namespace from System Property :null
2021-02-01 13:08:06.915  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.915  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger', cluster='null', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=8364, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612156086824}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:06.915  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger with instance: Instance{instanceId='null', ip='10.12.217.144', port=20880, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='null', serviceName='null', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=8364, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612156086824}}
2021-02-01 13:08:06.918  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.919  INFO 8364 --- [           main] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, urls: [empty://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.923  INFO 8364 --- [           main] org.apache.dubbo.config.ServiceConfig    :  [DUBBO] Register dubbo service com.alibaba.cloud.dubbo.service.DubboMetadataService url dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0 to registry registry://localhost:9090/org.apache.dubbo.registry.RegistryService?application=nacos-debugger&check=false&dubbo=2.0.2&pid=8364&qos.enable=false&registry=spring-cloud&release=2.7.8&timestamp=1612156086824, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.923  INFO 8364 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Register: dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.925  INFO 8364 --- [           main] c.a.c.dubbo.registry.DubboCloudRegistry  :  [DUBBO] Subscribe: provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.928  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : new ips(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:06.929  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:06.934  INFO 8364 --- [           main] m.DynamicConfigurationServiceNameMapping :  [DUBBO] Dubbo service[nacos-debugger] mapped to interface name[com.alibaba.cloud.dubbo.service.DubboMetadataService]., dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:06.935  INFO 8364 --- [           main] c.a.c.d.s.DubboMetadataServiceExporter   : The Dubbo service[<dubbo:service exported="true" unexported="false" />] has been exported.
2021-02-01 13:08:06.936  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:06.936  INFO 8364 --- [           main] com.alibaba.nacos.client.naming          : [REGISTER-SERVICE] debugger registering service DEFAULT_GROUP@@nacos-debugger with instance: Instance{instanceId='null', ip='localhost', port=8100, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}}
2021-02-01 13:08:06.939  INFO 8364 --- [           main] c.a.c.n.registry.NacosServiceRegistry    : nacos registry, DEFAULT_GROUP nacos-debugger localhost:8100 register finished
2021-02-01 13:08:06.942  INFO 8364 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger.yml+DEFAULT_GROUP+debugger
2021-02-01 13:08:06.943  INFO 8364 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger.yml, group=DEFAULT_GROUP, cnt=1
2021-02-01 13:08:06.943  INFO 8364 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger+DEFAULT_GROUP+debugger
2021-02-01 13:08:06.943  INFO 8364 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger, group=DEFAULT_GROUP, cnt=1
2021-02-01 13:08:06.944  INFO 8364 --- [           main] c.a.n.client.config.impl.ClientWorker    : [fixed-localhost_8848-debugger] [subscribe] nacos-debugger-dev.yml+DEFAULT_GROUP+debugger
2021-02-01 13:08:06.944  INFO 8364 --- [           main] c.a.nacos.client.config.impl.CacheData   : [fixed-localhost_8848-debugger] [add-listener] ok, tenant=debugger, dataId=nacos-debugger-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-02-01 13:08:07.222  INFO 8364 --- [.naming.updater] com.alibaba.nacos.client.naming          : new ips(1) service: DEFAULT_GROUP@@nacos-debugger@@DEFAULT -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:07.223  INFO 8364 --- [.naming.updater] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger@@DEFAULT -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:07.280  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"localhost\",\"port\":8100,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger\",\"metadata\":{\"dubbo.metadata-service.urls\":\"[ \\\"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\\\" ]\",\"dubbo.protocols.dubbo.port\":\"20880\",\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@nacos-debugger\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@nacos-debugger\",\"name\":\"DEFAULT_GROUP@@nacos-debugger\",\"cacheMillis\":10000,\"lastRefTime\":1612156087277,\"checksum\":\"10e2266636fc645fcdb27a0d1dee4376\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":11636568504276} from /127.0.0.1
2021-02-01 13:08:07.283  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"localhost\",\"port\":8100,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger\",\"metadata\":{\"dubbo.metadata-service.urls\":\"[ \\\"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\\\" ]\",\"dubbo.protocols.dubbo.port\":\"20880\",\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@nacos-debugger\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@nacos-debugger\",\"name\":\"DEFAULT_GROUP@@nacos-debugger\",\"cacheMillis\":10000,\"lastRefTime\":1612156087278,\"checksum\":\"10e2266636fc645fcdb27a0d1dee4376\",\"useSpecifiedURL\":false,\"clusters\":\"\",\"env\":\"\",\"metadata\":{}}","lastRefTime":11636568504276} from /127.0.0.1
2021-02-01 13:08:07.285  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=8100, ip='localhost', weight=1.0, serviceName='DEFAULT_GROUP@@nacos-debugger', cluster='DEFAULT', metadata={dubbo.metadata-service.urls=[ "dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0" ], dubbo.protocols.dubbo.port=20880, preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:07.285  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : modified ips(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:07.286  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : current ips:(1) service: DEFAULT_GROUP@@nacos-debugger -> [{"instanceId":"localhost#8100#DEFAULT#DEFAULT_GROUP@@nacos-debugger","ip":"localhost","port":8100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@nacos-debugger","metadata":{"dubbo.metadata-service.urls":"[ \"dubbo://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0\" ]","dubbo.protocols.dubbo.port":"20880","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:07.746  INFO 8364 --- [g.push.receiver] com.alibaba.nacos.client.naming          : received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"10.12.217.144\",\"port\":20880,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:\",\"metadata\":{\"side\":\"provider\",\"methods\":\"getUser\",\"release\":\"2.7.8\",\"deprecated\":\"false\",\"dubbo\":\"2.0.2\",\"pid\":\"8364\",\"interface\":\"com.github.wltj920.service.rpc.RpcUserService\",\"version\":\"1.0.1\",\"generic\":\"false\",\"revision\":\"1.0.1\",\"token\":\"cd77f672-5aeb-4c5f-bfa3-14916c95cb5d\",\"path\":\"com.github.wltj920.service.rpc.RpcUserService\",\"protocol\":\"dubbo\",\"application\":\"nacos-debugger\",\"dynamic\":\"true\",\"category\":\"providers\",\"anyhost\":\"true\",\"timestamp\":\"1612156086350\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:\",\"ephemeral\":true}],\"dom\":\"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:\",\"name\":\"DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.1:\",\"cacheMillis\":10000,\"lastRefTime\":1612156087745,\"checksum\":\"35d3e94939302dc39b1479b4475ef567\",\"useSpecifiedURL\":false,\"clusters\":\"\",\"env\":\"\",\"metadata\":{}}","lastRefTime":11637035747022} from /127.0.0.1
2021-02-01 13:08:07.930  INFO 8364 --- [.naming.updater] com.alibaba.nacos.client.naming          : [BEAT] adding beat: BeatInfo{port=20880, ip='10.12.217.144', weight=1.0, serviceName='DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger', cluster='DEFAULT', metadata={side=provider, methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs, release=2.7.8, deprecated=false, dubbo=2.0.2, pid=8364, interface=com.alibaba.cloud.dubbo.service.DubboMetadataService, version=1.0.0, generic=false, revision=2.2.4.RELEASE, token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0, path=com.alibaba.cloud.dubbo.service.DubboMetadataService, protocol=dubbo, application=nacos-debugger, dynamic=true, category=providers, anyhost=true, group=nacos-debugger, timestamp=1612156086824}, scheduled=false, period=5000, stopped=false} to beat map.
2021-02-01 13:08:07.930  INFO 8364 --- [.naming.updater] com.alibaba.nacos.client.naming          : modified ips(1) service: DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","metadata":{"side":"provider","methods":"getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"8364","interface":"com.alibaba.cloud.dubbo.service.DubboMetadataService","version":"1.0.0","generic":"false","revision":"2.2.4.RELEASE","token":"d2d1a664-0802-4b49-9de3-c8d889c2d0d0","path":"com.alibaba.cloud.dubbo.service.DubboMetadataService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","group":"nacos-debugger","timestamp":"1612156086824"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-02-01 13:08:07.931  INFO 8364 --- [ncesChangeEvent] o.a.dubbo.registry.nacos.NacosRegistry   :  [DUBBO] Notify urls for subscribe url provider://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=configurators&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0, urls: [empty://10.12.217.144:20880/com.alibaba.cloud.dubbo.service.DubboMetadataService?anyhost=true&application=nacos-debugger&bind.ip=10.12.217.144&bind.port=20880&category=providers&check=false&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&group=nacos-debugger&interface=com.alibaba.cloud.dubbo.service.DubboMetadataService&methods=getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs&pid=8364&qos.enable=false&release=2.7.8&revision=2.2.4.RELEASE&side=provider&timestamp=1612156086824&token=d2d1a664-0802-4b49-9de3-c8d889c2d0d0&version=1.0.0], dubbo version: 2.7.8, current host: 10.12.217.144
2021-02-01 13:08:07.931  INFO 8364 --- [.naming.updater] com.alibaba.nacos.client.naming          : current ips:(1) service: DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger -> [{"instanceId":"10.12.217.144#20880#DEFAULT#DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","ip":"10.12.217.144","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO@@providers:com.alibaba.cloud.dubbo.service.DubboMetadataService:1.0.0:nacos-debugger","metadata":{"side":"provider","methods":"getAllServiceKeys,getServiceRestMetadata,getExportedURLs,getAllExportedURLs","release":"2.7.8","deprecated":"false","dubbo":"2.0.2","pid":"8364","interface":"com.alibaba.cloud.dubbo.service.DubboMetadataService","version":"1.0.0","generic":"false","revision":"2.2.4.RELEASE","token":"d2d1a664-0802-4b49-9de3-c8d889c2d0d0","path":"com.alibaba.cloud.dubbo.service.DubboMetadataService","protocol":"dubbo","application":"nacos-debugger","dynamic":"true","category":"providers","anyhost":"true","group":"nacos-debugger","timestamp":"1612156086824"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
horizonzy commented 3 years ago

image

能否本地debug看一下。在registerInstance的时候,ephemeral的属性有没有存在false的。

wltj920 commented 3 years ago

image 原来可以写中文的啊。。没有ephemeral存在false的,我用的是JDK11和Win10 x64,不知道是不是这个原因

sourirer commented 3 years ago

除了你截图的这个,还有其他的堆栈信息么? 或者在nacos的服务端日志里面有没有相关异常堆栈?

horizonzy commented 3 years ago

The root exception as followed:

java.nio.file.InvalidPathException: Illegal char <:> at index 105: C:\Users\17562\nacos\data\naming\data\debugger\com.alibaba.nacos.naming.iplist.debugger##DUBBO@@providers:com.github.wltj920.service.rpc.RpcUserService:1.0.0:

It looks like file compatibility issues in windows pc. I will trace in in windows pc later.

KomachiSion commented 3 years ago

Refer to #3527

wltj920 commented 3 years ago

Refer to #3527

So, will you fix this problem in futrue?

KomachiSion commented 3 years ago

Nacos 2.0 will fix this problem.

Nacos 1.X need more discussion and find out a way to avoid it.

haoyann commented 3 years ago

dubbo在进行服务注册的时候,serviceName包含了:,在这个流程中nacos需要获取持久化服务的信息,但是window不支持包含:的文件,所以抛出了异常。 image image